I am working on a website that requires me to use HelveticaNeueLite
font-family.
I have separate css files for ie and other browsers.
My css code for ie is as follows
@font-face {
font-family: HelveticaNeueLite;
src: url("/system/fonts/HelveticaNeueLTStd-UltLt_0.eot?#iefix") format('embedded-opentype');
}
But I keep getting the above error in ie-9.
I don't know what's going wrong. I donot have reference of any .otf
font in my css file for ie.
I had used HelveticaNeueLTStd-UltLt_0.otf
file to generate HelveticaNeueLTStd-UltLt_0.ttf
through http://www.freefontconverter.com/ and used HelveticaNeueLTStd-UltLt_0.ttf
to generate HelveticaNeueLTStd-UltLt_0.eot
through http://www.kirsle.net/wizards/ttf2eot.cgi
Instead of .eot
I used .woff
font, and it worked in IE-9.
@font-face {
font-family: HelveticaNeueLite;
src: url('/system/fonts/HelveticaNeueLTStd-UltLt_0.woff') format("woff");
}
But I still I get the following error: