On my page I call the font as follows:
<link rel="stylesheet" href="fonts/Bebas/stylesheet.css" type="text/css" charset="utf-8" /><!---BebasRegular --->
Then when I refer to the font I use code such as this:
#pagewrapper {
font: 14px/1.4 'BebasRegular', sans-serif;
}
Finally, I use the following code directly from font squirrel:
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on July 18, 2012 03:57:10 PM America/New_York */
@font-face {
font-family: "BebasRegular";
src: url('BEBAS___-webfont.eot');
src: url('BEBAS___-webfont.eot?#iefix') format('embedded-opentype'),
url('BEBAS___-webfont.woff') format('woff'),
url('BEBAS___-webfont.ttf') format('truetype'),
url('BEBAS___-webfont.svg#BebasRegular') format('svg');
font-weight: normal;
font-style: normal;
}
I simply unpacked directly from font squirrel and did not change any of the other files or move anything out of the directory.
So, the font works perfectly on chrome, ie and safari. However, in Firefox is does not work. I know this is not a very interesting question--but I am clueless. What is going wrong? Can anyone spot the issue?
I feel like its such a simple set up that there shouldn't be room for any issues... :)