I have included all the font format variations required to use a webfont on a site i created (even used the fontkit on @font-face and referenced em all in my css but they r still not displaying in internet explorer. No ideas leaft...
Anyone have a clue how to fix this?
See rlaland.com
Thanks
Luke America answers:
Prior to M$IE9, it only used proprietary EOT fonts. You can read about them here:
http://en.wikipedia.org/wiki/Embedded_OpenType
Then, the CSS segment would look like this:
@font-face
{
font-family: 'blok-regular';
src: url('type/Blokletters-Potlood.eot');
src: local('Blokletters Potlood Potlood'),
local('Blokletters-Potlood'),
url('type/Blokletters-Potlood.ttf') format('truetype');
}
You may want to try the Google Fonts API instead to work with earlier versions of M$IE:
http://googlecode.blogspot.com/2010/05/introducing-google-font-api-google-font.html
Luke America comments:
Also, I believe that this online app will convert TTF to EOT.
http://www.fontsquirrel.com/fontface/generator
Luke America comments:
Here's another online TTF to EOT converter:
[[LINK href="http://www.kirsle.net/wizards/ttf2eot.cgi"]][[/LINK]]
Luke America comments:
Converter that didn't make it in the earlier answer:
http://www.kirsle.net/wizards/ttf2eot.cgi
Peter Michael answers:
You could use [[LINK href="http://cufon.shoqolate.com/generate/"]]Cufón[[/LINK]]
Ryan Riatno answers:
What font and IE version you used?
You can generate @font-face at [[LINK href="http://www.fontsquirrel.com/fontface/generator"]]FontSquirell[[/LINK]]
Ryan Riatno comments:
I'm sorry for the same answer with Luke America