Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been told to create a website using a non standard font. The client has supplied the font file (in the .otf format). Is there any way I can have the text on the webpage show up in the specified font (non-web standard) ?

Is there any other alternative other than using sIFR ?

EDIT : How do i apply this @font-face only to a particular div ?

share|improve this question
possible duplicate of Is @font-face usable now? and this, this, this, this, this and many others. – Quentin Oct 10 '11 at 19:38

closed as off topic by Quentin, Simone Carletti, bmargulies, Joe, Graviton Oct 11 '11 at 2:54

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 8 down vote accepted

You can use the CSS @font-face declaration for this.

However, beware: not all browsers support the otf format.
You can use a tool such as FontSquirrel's Font-face Generator to convert the font into all the different formats you'll need. It'll even generate the CSS for you, which you'll then simply copy and paste into your project.

share|improve this answer
2  
Your answer was mostly better than mine so I merged them and deleted mine :). +1 – Domenic Oct 10 '11 at 19:40
How do i apply this font-face only to a particular div ? – Yash Desai Oct 10 '11 at 20:20
The @font-face declaration does not apply the font to your page at all. You need the @font-face declaration so that the font is available for you to use in your page. You can then apply the font to your div via the regular CSS font-family property. If you're using FontSquirrel's Generator, you should have a sample page included with the download... – Joseph Silber Oct 10 '11 at 20:23

Not 100% supported, but:

@font-face {
    font-family: MyFont;
    src: url('MyFont.otf');
}
share|improve this answer

Alternatively, you could use Cufon font replacement:

http://cufon.shoqolate.com/generate/

It does have some drawbacks however: text can't be copied and it uses javascript which may be a problem in some very old browsers of if someone is browsing with js turned off.

share|improve this answer

CSS 3 has given browsers the ability to download and use TTF file formats. As usual IE gives partial support. As usual, Google to the rescue.

http://code.google.com/apis/webfonts/docs/getting_started.html

share|improve this answer

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