I've searched and searched and searched but I still can't figure out how to get my custom font loaded in Firefox. Using the @font-face property, I have this in the head section:
@font-face {
font-family: 'MeanTimeMedium';
src: url('http://sweetbacklove.com/fonts/meantimec3-webfont.eot');
src: url('http://sweetbacklove.com/fonts/meantimec3-webfont.eot?#iefix') format('embedded-opentype'),
url('http://sweetbacklove.com/fonts/MeanTimec3.ttf') format('truetype'),
url('http://sweetbacklove.com/fonts/meantimec3-webfont.woff') format('woff'),
url('http://sweetbacklove.com/fonts/meantimec3-webfont.svg#MeanTimeMedium') format('svg');}
Because Firefox won't accept direct links to other domains, I put an .htaccess file in my "fonts" folder reading as such:
<FilesMatch "\.(ttf|ttc|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
Still, I'm getting squat. If anyone could provide any insight, it would be greatly appreciated.
My website. The fonts and .htaccess file are hosted on GoDaddy on a Windows server with IIS 7.0.
Thanks.