Originally taken from this Stack Overflow answer
Created
August 8, 2013 14:02
-
-
Save obahareth/6184841 to your computer and use it in GitHub Desktop.
Cross Browser Font Declaration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddType application/vnd.ms-fontobject .eot | |
AddType font/ttf .ttf | |
AddType font/otf .otf | |
AddType application/x-font-woff .woff |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face | |
{ | |
font-family: 'Graublau Web'; | |
src: url('GraublauWeb.eot'); | |
src: local('☺'), | |
url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment