In my CSS style sheet, the first entry is
@font-face {
font-family: "Font";
src: url(link) format("truetype");
}
p.customfont {
font-family: "Font", Verdana, Tahoma;
}
This is not a font commonly installed on computers. Chrome loads this font and uses it in the correct places, but IE 9 will not. Now as a lot of people still use IE, this got me worried. I tried on a lot of other computers, and chrome works fine on all, but IE also fails on all.
How can I fix this?
EDIT: For future reference - http://everythingfonts.com/font-face converts the ttf for you to all the formats needed, and creates the css - so a lot of time saved