I used the Fontsquirrel @fontface Generator to create CSS for the three fonts that I use. Fonts display correctly in every browser, including other versions of IE, but IE 9 does not display fonts.
Here is the CSS:
@font-face { font-family: "OswaldBold"; src: url("../fonts/oswald-bold-webfont.eot"); src: url("../fonts/oswald-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-bold-webfont.woff") format("woff"), url("../fonts/oswald-bold-webfont.ttf") format("truetype"), url("../fonts/oswald-bold-webfont.svg#OswaldBold") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: "OswaldRegular"; src: url("../fonts/oswald-regular-webfont.eot"); src: url("../fonts/oswald-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-regular-webfont.woff") format("woff"), url("../fonts/oswald-regular-webfont.ttf") format("truetype"), url("../fonts/oswald-regular-webfont.svg#OswaldRegular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: "OswaldLight"; src: url("../fonts/oswald-light-webfont.eot"); src: url("../fonts/oswald-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-light-webfont.woff") format("woff"), url("../fonts/oswald-light-webfont.ttf") format("truetype"), url("../fonts/oswald-light-webfont.svg#OswaldLight") format("svg"); font-weight: normal; font-style: normal; }
... and here are the errors I get in the IE developer console:
CSS3111: @ font-face unknown error detected.
oswald-light-webfont.eot? #iefix
CSS3111: @ font-face unknown error detected.
oswald-bold-webfont.eot? #iefix
CSS3111: @ font-face unknown error detected.
oswald-light-webfont.woff
CSS3111: @ font-face unknown error detected.
Oswald-bold-webfont.woff
CSS3114: @ font-face failed to perform OpenType permission check. Permission must be set. oswald-light-webfont.ttf
CSS3114: @ font-face failed to perform OpenType permission check. Permission must be set. Oswald-bold-webfont.ttf
I was not lucky with the searches I did, any insight would be greatly appreciated. Thank you in advance.
source share