Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dustintheweb/8da2f2c67aeb28b1c2d7 to your computer and use it in GitHub Desktop.
Save dustintheweb/8da2f2c67aeb28b1c2d7 to your computer and use it in GitHub Desktop.
Self Hosted @font-face Webfont Stack With Stock Android Browser Fix
@font-face {
font-family:"FontName";
src:url("fonts/fontname.eot");
src:url("fonts/fontname.eot?#iefix") format("eot"),url("fonts/fontname.woff") format("woff"),url("fonts/fontname.ttf") format("truetype"),url("fonts/fontname.svg#fontname") format("svg");
font-weight: 400;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { // android fix
@font-face {
font-family:"FontName";
src:url("fonts/fontname.svg#fontname") format("svg");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment