On my website I'm currently using image files to represent custom fonts. I'm wondering if I can replace this with actual text but with a font that may not be installed on the viewer's system. How can I achieve this? Thanks

link|improve this question

Possible Duplicate stackoverflow.com/questions/107936/… – George Bailey Dec 6 '10 at 18:55
feedback

2 Answers

up vote 1 down vote accepted

This is possible (with certain restrictions) using @font-face. For a great introduction, read this.

link|improve this answer
* Internet Explorer only supports EOT * Mozilla browsers support OTF and TTF * Safari and Opera support OTF, TTF and SVG * Chrome supports TTF and SVG. If you don't care for IE, then this is a great solution using only a .TTF file. If you need IE support, then a simple JavaScript if() would suffice, or use one of those strange [if ie] comment tags I can't remember the syntax for! – JamWaffles Dec 6 '10 at 19:04
Hi, thanks for the link. I have read quite a bit of it now but it seems too much hassle as JamWaffles pointed out... Since I'm just using the font for title and headers I'll probably just stick to doing images. I really do appreciate it though, thank you. – Jake Dec 6 '10 at 19:31
Also, I saw on a website using this technique that the highlighting of the text (one of the things I was hoping to achieve) was really messed up. Also (the site may be a bad example) the text was blurred... – Jake Dec 6 '10 at 19:34
feedback

This seems to be a very good choice if you don't mind that the user cannot select and copy your text.

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

link|improve this answer
Neat! +1 for coolness. – JamWaffles Dec 6 '10 at 19:02
feedback

Your Answer

 
or
required, but never shown

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