Skip to content

Instantly share code, notes, and snippets.

@mattt
Last active April 9, 2020 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mattt/2a2adfb247bf781d9cb1bb3d82c30128 to your computer and use it in GitHub Desktop.
Save mattt/2a2adfb247bf781d9cb1bb3d82c30128 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>
@mattt
Copy link
Author

mattt commented Mar 11, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment