In this site I am currently coding Im using webfonts that are stored on my server. Every browser displays them just fine but not chrome. Chrome uses Times New Roman instead. After checking the developer tools on chrome I found that they fonts ARE being requested from the server and retreived successfully. For some reason, Chrome wont use them. I did notice that if I install the fonts on my computer (Using Windows, BTW), the suddenly work on chrome aswell.
Here's my font-face decleration:
@font-face {
font-family: 'BNLunch';
src: url('BN_Lunch.eot');
src: url('BN_Lunch.eot?#iefix') format('embedded-opentype'),
url('BN_Lunch.woff') format('woff'),
url('BN_Lunch.ttf') format('truetype'),
url('BN_Lunch.svg#BNLunchregular') format('svg');
font-weight: normal;
font-style: normal;
}
Any insights?
EDIT: I forgot to mention that this particular CSS works with other fonts. Only this particular font and BNMadregot are giving me trouble. Could it be that it is because the English letters of this font are blank?