I'm working on a website with a font I uploaded. It works fine in all browsers but in Firefox and IE, when I add www. to the url in the browser, the font doesn't show up? Does anyone know what's up?
This is my CSS declaration:
@font-face {
font-family: 'ITCAvantGardeGothicProDemi';
src: url('../fonts/itcavantgardepro-demi-webfont.eot');
src: url('../fonts/itcavantgardepro-demi-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/itcavantgardepro-demi-webfont.woff') format('woff'),
url('../fonts/itcavantgardepro-demi-webfont.ttf') format('truetype'),
url('../fonts/itcavantgardepro-demi-webfont.svg#') format('svg');
font-weight: normal;
font-style: normal;
}
Thanks for the help!
http://www.yoursite.com/css/fonts/itcavantgardepro-demi-webfont.eot, do not forgethttp://– Giberno Nov 29 '11 at 8:03@font-facesupposed to apply? – tekknolagi Nov 29 '11 at 8:05/css/fonts/itcavantgardepro-demi-webfont.eotinstead? likeurl('/css/fonts/itcavantgardepro-demi-webfont.eot');– Book Of Zeus Nov 29 '11 at 11:20