On 1/9/2012 12:26 PM, Egan Ford wrote: > snip <
I tested on my wife's computer (Windows 7) without issue with Chrome, but with IE9 the TTF fonts do not get downloaded and/or rendered.
You need to convert the TTF fonts to eot fonts for IE9 to work. You can do that online here:
http://www.kirsle.net/wizards/ttf2eot.cgi
Keep the CSS style lines you have for the TTFs and add lines like this:
@font-face {
font-family: yourfont;
src: url('yourfont.eot')
}
Should work.
> snip <
Charlie