When I try to use @font-face for an EOT font for IE, it doesn't work when the font is hosted somewhere else. It only works when it's local, in the web application.
This doesn't work:
@font-face
{
font-family: 'AvantGardeMdBTMedium';
src: url('http://myhost.com/fonts/fontname.eot')
}
This works:
@font-face {
font-family: AvantGardeNormal;
src: url('fontname.eot');
}
Is it possible to use a font hosted, through a full http address?
Thanks.