IE9 does not show font family

3

I'm making a web page and I want to use the source nexa bold , I have downloaded the source and I have it in various extensions such as .otf , .eot , .wof , .ttf , and .svg , I want to clarify that this error only I have in Internet Explorer

Next I show the CSS code:

@font-face {
font-family: Nexa-Bold;
src:url(../fonts/nexa/NexaBold.otf) format("opentype"),
    url(../fonts/nexa/NexaBold.eot?#iefix) format("embedded-opentype"),
    url(../fonts/nexa/NexaBold.wof) format("wof"),
    url(../fonts/nexa/NexaBold.ttf) format("truetype"),
    url(../fonts/nexa/NexaBold.svg#svgFontName) format("svg");

}

Reading on the internet I found that in the .eot extension, ?#iefix is set so that it does not crashee but still does not work. I hope you can help me.

    
asked by Pepe Heron 18.01.2016 в 17:36
source

1 answer

2

Ready, it worked correctly in the following way.

  @font-face {
font-family: 'Nexa-Bold';
src: url('../fonts/nexa/NexaBold.eot?#iefix') format('embedded-opentype'),/*IE*/
    url('../fonts/nexa/NexaBold.woff') format('woff'),
    url('../fonts/nexa/NexaBold.ttf')  format('truetype'),
    url('../fonts/nexa/NexaBold.svg#svgFontName') format('svg');

}

    
answered by 18.01.2016 в 18:27