I am trying to implement an .otf font for a website I am working on with a @font-face rule:
@font-face {
font-family: "Neris";
src: url(../fonts/neris/neris-semibold.otf) format("opentype");
font-weight: 400;
}
However, it doesn't work in IE, so I checked it with Caniuse and it said:
Partial support in IE9+ refers to the fonts only working when set to be "installable".
What's that mean anyway? Is there anything I can do to make it "installable" or should I give up IE support in this case? Thanks!