vote up 10 vote down star
2

Is there any way to add some custom font on website, without using images, flash or some other graphics. For example, I was working on some wedding website, and I was found a lot of nice fonts with that subject, but I'm not find the right way how to add that font on the server and how to include that font with css into html, so is there any chache to do this without graphics?

flag

70% accept rate

13 Answers

vote up 14 vote down check

This could be done via CSS 2.0 and should work in WebKit based browser. It is not really widely supported, though, I think.

<style type="text/css">
@font-face {
    font-family: "My Custom Font";
    src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>
link|flag
Note: Looks like the font-face tag also is a part of CSS3 and not just CSS2. See css3.info/webkit-has-web-fonts-support/… for more information. – hangy Sep 20 '08 at 11:48
Both Internet Explorer and Firefox re NOT based on Webkit, so it's quite a useless solution in my opinion. – Casper Sep 20 '08 at 13:21
It's not useless since it's standard : the more you implement it, the more it will likely be implemented by browsers. That does not mean you should not find another way to compensate, but using this as a complement seems good to me. – e-satis Sep 22 '08 at 9:14
Firefox 3.1 does support @font-face, though. – ms2ger Feb 26 at 15:20
2  
It does work in IE, but just not with a TrueType font. See my answer below. brendanjerwin.github.com/2009/03/… – brendanjerwin Mar 27 at 14:59
vote up 1 vote down

I'm afraid graphics is your only option in this case.

link|flag
vote up 5 vote down

Or you could try sIFR (http://http://www.mikeindustries.com/blog/sifr)

Edit: I know it uses flash, but only if available. If flash isn't available, it displays the original text in it's original (css) font.

link|flag
vote up 1 vote down

FOund an interesting link here:

http://www.spoono.com/html/tutorials/tutorial.php?url=embeddingfonts

link|flag
Yeah. I found that too. It won't work in Firefox ( and in fact produces HORIBILE results ) – Kent Fredric Sep 20 '08 at 11:37
Nice! Works fine in IE, and no browser was specified. This could have been an intranet site for a large corporation standardized on IE! Thanks. – mattlant Sep 20 '08 at 11:40
vote up 9 vote down

I've found that the easiest way to have non-standard fonts on a website is to use sIFR

It does involve the use of a Flash object that contains the font, but it degrades nicely to standard text / font if Flash is not installed.

The style is set in your CSS and Javascript set's up the flash replacement for your text.

Edit: (I still recommend using images for non-standard fonts as sIFR adds time to a project and can require maintenance).

link|flag
What a terrible idea ! I have flash in my browser but flashblock too. On that website, my browser display an horrible defaced page. Flash should stay something that you use for big animations or movies. Too much flash is wery anoying and visualy, my my... – e-satis Sep 22 '08 at 9:17
vote up 1 vote down

It looks like it only works in Internet Explorer, but a quick Google search for "html embed fonts" yields http://www.spoono.com/html/tutorials/tutorial.php?id=19

If you want to stay platform-agnostic (and you should!) you'll have to use images, or else just use a standard font.

link|flag
vote up 2 vote down

The technique that the W3C has recommended for do this is called "embedding" and is well described by the three articles here: Embedding Fonts. In my limited experiments, I have found this process error-prone and have had limited success in making it function in a multi-browser environment.

link|flag
vote up 3 vote down

"Is there any way to add some custom font on website, without using ... flash"

Sure, use Silverlight.

:P

link|flag
only problem with this is distribution rights, as you would need that to use the font :( – mattlant Sep 20 '08 at 16:51
vote up 2 vote down

Safari and Internet Explorer both support the CSS @font-face rule, however they support two different embedded font types. Firefox is planning to support the same type as Apple some time soon. SVG can embed fonts but isn't that widely supported yet (without a plugin).

I think the most portable solution I've seen is to use a JavaScript function to replace headings etc. with an image generated and cached on the server with your font of choice -- that way you simply update the text and don't have to stuff around in Photoshop.

link|flag
This does not have to be done with JavaScript. I know that a lot of people like to use JavaScript for quite a few stuff nowadays, but a standard CSS technique may be more appropriate here. See sitepoint.com/article/header-images-css-xhtml/… – hangy Sep 20 '08 at 11:50
I'm sorry if there's confusion, the technique refers not to the method of image replacement which, as you say, can be CSS. It is about generating graphics representing a given string in a particular font/style, on the fly, at the server -- obviating the need to create these manually. – zobier Sep 22 '08 at 5:02
vote up 3 vote down

If you use ASP.NET its really easy to generate image based fonts without actually having to install (as in adding to the installed font base) fonts on the server by using:

		PrivateFontCollection pfont = new PrivateFontCollection();
		pfont.AddFontFile(filename);
		FontFamily ff = pfont.Families[0];

and then drawing with that font onto a Graphics

link|flag
well, yes... And you user can forget about copying and pasting. And zooming too, in old browsers. I don't even talk about bandwidth issues ! – e-satis Sep 22 '08 at 9:19
1  
Yeah, ok, and the question specified that it was going to be using it for content text? No it didnt, it was a general question, and this was a general answer. Small snippets of text, headers, etc, dont take up lots of bandwidth. Sheesh, get a grip! – mattlant Sep 22 '08 at 12:36
vote up 2 vote down

Did a bit of research and dug up this:

http://www.alistapart.com/articles/dynatext/

This technique uses images, but it appears to be "hands free". You write your text, and you let a few automated scripts do automated find-and-replace on the page for you on the fly.

Has some limitations, but probably one of the easier choises ( and more browser compatible ) than all the rest I've seen.

link|flag
vote up 3 vote down

This article says it works with all 3 major browsers:

http://jontangerine.com/log/2008/10/font-face-in-ie-making-web-fonts-work

Here is a sample I got working:

http://brendanjerwin.github.com/test_font.html

More discussion: http://brendanjerwin.github.com/2009/03/03/embedding-fonts.html

link|flag
vote up 1 vote down

Typeface.js and Cufon are two other interesting options. They are Javascript components that render special font data in JSON format (which you can convert from Truetype or OpenType formats on their web sites) via the new element in all newer browsers except IE and via VML in IE.

The main problem with both (as of now) is that selecting text does not work or at least works only quite awkwardly.

Still, very nice for headlines. Body text... I don't know.

And it's surprisingly fast.

link|flag

Your Answer

Get an OpenID
or

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