Skip to content

Instantly share code, notes, and snippets.

@rgo
Forked from javier/font faces
Created March 30, 2010 11:42
Show Gist options
  • Save rgo/349030 to your computer and use it in GitHub Desktop.
Save rgo/349030 to your computer and use it in GitHub Desktop.
embedding true type fonts in your css
/* Font face generator needed to IE family
* http://www.fontsquirrel.com/fontface/generator
*/
@font-face {
font-family: 'Essays1743Italic';
src: url('Essays1743-Italic.eot');
src: local('☺'), url('Essays1743-Italic.ttf') format('truetype');
}
@font-face {
font-family: 'Essays1743Medium';
src: url('Essays1743.eot');
src: local('☺'), url('Essays1743.ttf') format('truetype');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment