Skip to content

Instantly share code, notes, and snippets.

@red2678
Last active August 29, 2015 14:07
Show Gist options
  • Save red2678/cafe8c9dd31f11ac8899 to your computer and use it in GitHub Desktop.
Save red2678/cafe8c9dd31f11ac8899 to your computer and use it in GitHub Desktop.
Font Face Example
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff') format('woff'), /* Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
/*Read More Here:
http://css-tricks.com/snippets/css/using-font-face/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment