I'm working on a website that requires font trials online, the fonts i got are all .otf ... is there anyway i can embed the fonts and get them working on all browsers ??? If not, what other alternatives i have ??

Thanks

link|improve this question

73% accept rate
Maybe javascript should be removed from the tag list here? – kzh Jul 14 '10 at 10:41
feedback

2 Answers

If your Font is a free Font, you could convert your Font using for example a onlinefontconverter, but .otf is a good type for using @font-face

@font-face {
font-family: GraublauWeb;
src: url("path-to-the-font-file/GraublauWeb.otf") format("opentype");
}

@font-face {
font-family: GraublauWeb;
font-weight: bold;
src: url("path-to-the-font-file/GraublauWebBold.otf") format("opentype");
}

checkout this link to see how it works.

because @font-face is not working in all browsers (IE),read "@font-face in IE: Making Web Fonts Work".

hope this helps

link|improve this answer
Ah, you beat me to it! – kzh Jul 14 '10 at 10:40
It worked perfectly fine on almost all browsers ... The only browser that didn't work is FireFox Linux ... Any suggestion for that one ?? – Naruto Jul 14 '10 at 11:28
feedback

From the Google Font Directory examples:

@font-face {
  font-family: 'Tangerine';
  font-style: normal;
  font-weight: normal;
  src: local('Tangerine'), url('http://example.com/tangerine.ttf') format('truetype');
}
body {
  font-family: 'Tangerine', serif;
  font-size: 48px;
}

This works cross browser with .ttf, I believe it may work with .otf. (Wikipedia says .otf is mostly backwards compatible with .ttf) If not, you can convert the .otf to .ttf

Here are some good sites:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.