I'm working on a small project, where the client sent me a font that he wants me to use for the Arabic language. The file extension for the file is .otf
I embedded the file, and tried to use it, and the results were:
- IE8: Didn't recognize the font.
- Chrome: Didn't recognize the font.
- Firefox: Recognized the font, but when viewing it the letters were separated (in Arabic language the letters of the word is connected to each other)
Any idea on how to fix it on Firefox and make IE and Chrome recognize the font type ??
Here is the code is used:
CSS
@font-face {
font-family: Dinar;
src: url("GEDinarTwo-Light.otf") format("opentype");
}
@font-face {
font-family: Dinar;
font-weight: bold;
src: url("GEDinarTwo-Light.otf") format("opentype");
}
#ss {
font-family: Dinar, Arial, Helvetica, Sans-Serif;
}
Many thanks ...