Skip to content

Instantly share code, notes, and snippets.

@daredude
Created October 28, 2010 13:50
Show Gist options
  • Save daredude/651384 to your computer and use it in GitHub Desktop.
Save daredude/651384 to your computer and use it in GitHub Desktop.
provide a custom font for your website with css WORKS WITH IE, FIREFOX, OPERA AND SAFARI
@font-face
{
font-family: my_font;
src: url('my_font.eot');
src: local(my_font), url('my_font.ttf') format('opentype');
}
p
{
font-family: my_font;
}
@daredude
Copy link
Author

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