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.