0

I have trouble to make those font-face working on IE10.Windows 8 (though it works fine on safari).

Any idea?

<head>
<style>
@font-face {
    font-family: 'Open Sans Condensed Light';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Condensed Light'), local('OpenSans-CondensedLight'), url(rsc/fonts/opensanscondensedlight.ttf) format('truetype');
}
@font-face {
    font-family: 'Open Sans Condensed Bold';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Condensed Bold'), local('OpenSans-CondensedBold'), url(rsc/fonts/opensanscondensedbold.ttf) format('truetype');
}
</style>

[UPDATE 1]

Here is the jsFiddle http://jsfiddle.net/stephanedeluca/f3hduskv/

[UPDATE 2]

Got a 404 on the ttf file, I don't get it. The URL is okay. One thing though: type is shown a text/html. The mime type on IIS for rtf is known.

enter image description here

Stéphane de Luca
  • 12,745
  • 9
  • 57
  • 95
  • This issue seems to be an IE10 font DRM issue. Similar question here, http://stackoverflow.com/questions/15744026/font-face-not-displaying-correctly-in-ie – Richard Edwards Nov 09 '14 at 03:40
  • Answer is contained right there http://stackoverflow.com/questions/15744026/font-face-not-displaying-correctly-in-ie as pointed to by @Richard Edwards – Stéphane de Luca Nov 13 '14 at 22:53

1 Answers1

0

Are font downloads disabled in IE10? It's in Internet Explorer's Settings: Security Settings-Internet Zone > Downloads > Font Download. Options are Enabled, Disabled and Prompt. If disabled you get nothing.

Richard Edwards
  • 1,379
  • 1
  • 17
  • 30