Skip to content

Instantly share code, notes, and snippets.

@derekcoder
Forked from mattt/cc.css
Created April 9, 2020 07:29
Show Gist options
  • Save derekcoder/05b2dd26c9cc043c860f6aa489db1a02 to your computer and use it in GitHub Desktop.
Save derekcoder/05b2dd26c9cc043c860f6aa489db1a02 to your computer and use it in GitHub Desktop.
Creative Commons Symbols @font-face CSS
@font-face {
font-family: "Creative Commons Symbols";
src: url(font_path("CreativeCommonsSymbols.woff2")) format("woff2"),
url(font_path("CreativeCommonsSymbols.woff")) format("woff");
font-weight: normal;
font-style: normal;
unicode-range: U+1F10D-1F10F, U+1F16D-1F16F;
}
i {
font-family: "Creative Commons Symbols";
font-style: normal;
}
<i title="Creative Commons">&#x1F16D;</i>
<i title="Attribution">&#x1F16F;</i>
<i title="Non-Commercial">&#x1F10F;</i>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment