Skip to content

Instantly share code, notes, and snippets.

@gnuns
Last active August 29, 2015 13:57
Show Gist options
  • Save gnuns/9749722 to your computer and use it in GitHub Desktop.
Save gnuns/9749722 to your computer and use it in GitHub Desktop.
Icon font load hack
/*
* IE will use EOT
* Chrome will use SVG
* Firefox will use Woff
*/
@font-face
{
font-family: 'echovoice';
src:url('/fonts/echovoice.eot');
src: url('/fonts/echovoice.eot?#iefix') format('embedded-opentype'),
url('/fonts/echovoice.svg#icomoon') format('svg'),
url('/fonts/echovoice.woff') format('woff'),
url('/fonts/echovoice.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment