Created
August 21, 2013 09:54
-
-
Save cythux/6292560 to your computer and use it in GitHub Desktop.
@font-face sample
This file contains 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: 'Font Name'; | |
src: url('../fonts/fontname-webfont.eot'); | |
src: url('../fonts/fontname-webfont.eot?iefix') format('eot'), | |
url('../fonts/fontname-webfont.woff') format('woff'), | |
url('../fonts/fontname-webfont.ttf') format('truetype'), | |
url('../fonts/fontname-webfont.svg#webfontjSpbZQRv') format('svg'); | |
font-weight: normal; | |
font-style: normal; | |
} | |
This file contains 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
/* Use the font in your styles */ | |
h1 { font-family: 'MyFontFamily', Arial, Helvetica, san-serif; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment