I'm trying to get my fonts definition with @font-face
work on Internet Explorer, but I can't.
I am using 3 fonts. Here is the code I wrote :
@font-face {
font-family : Rokkit;
src : url("fonts/Rokkitt-Regular.ttf");
}
@font-face {
font-family: "PT Sans";
src: url("fonts/PT-Sans.ttf");
}
@font-face {
font-family: Mako;
src: url("fonts/Mako.ttf");
}
Everything works fine on other browsers, but not in IE. So I added this line to every font definition :
@font-face {
font-family : Rokkit;
src : url("fonts/Rokkitt-Regular.ttf");
src : url("fonts/Rokkitt-Regular.eot");
}
But then, not only it still doesn't work on IE, but it stops working on Firefox, Chrome, Safari, ... What should I do ?
Thank you.