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.