vote up 1 vote down star

I'm developing a website for someone but they want (insist) that the title be in a non-standard font. (The customer is always right.) I have the TrueType (.ttf) font but how do I bundle this with the website so that it uses it?

I tried putting it in the Images folder and tried to access it with the style sheet:

font-family:URL(Images/Arial_Rounded_MT_Bold.ttf)

But that didn't work. How do I include a non-standard font in a way which will render?

In case it's useful, this is an ASP.NET 2.0 site.

flag

52% accept rate
1  
If enough people here say that they're wrong, will that convince them? – SLaks Nov 5 at 21:01

5 Answers

vote up 3 vote down

You have two options:

  1. Create an image instead of using text
  2. Use sifr to convert your text to the .ttf font
link|flag
Dave, I already have the .ttf font file!! – flavour404 Nov 5 at 20:58
Yes, but you won't be able to get it to the user's system over the web. Look up sifr to see what it does. – Dave Swersky Nov 5 at 20:59
sIFR is ridiculously cool. – John Rudy Nov 5 at 21:02
2  
flavour404, you're not understanding him. The font has to be installed on the server and you would use sifr to render the text in that font, in the place of the original. The only other possibility is if you are okay only serving the font to a select group of firefox 3.5-3.6(?) users who can comply with html5/css3. – thismat Nov 5 at 21:02
Yep, these are the only two methods I have seen "in the wild". – ctford Nov 5 at 21:05
show 1 more comment
vote up 4 vote down

There is currently no standard way to do this. You could use @font-face, but it's not supported in all browsers. As Lance mentioned, this is a great place to find a support reference for the major browsers.

There is an effort to standardize this type of thing. The Web Open Font Format (WOFF) is such an effort. It looks like this may even be adopted by the major browsers in the future. We will have to wait and see.

For now, the best you can do is to reference your font like you normally would, but add a default (standard) font after that.

font-family: "Arial Rounded MT Bold", "Times New Roman", Serif
link|flag
Here's a good link regarding browser support for @font-face: webfonts.info/wiki/… – Lance McNearney Nov 5 at 21:02
vote up 2 vote down

You have lots of options, none of them perfect. Smashing Magazine has a great article about rich fonts - most of them involve flash / image replacement.

http://www.smashingmagazine.com/2009/10/22/rich-typography-on-the-web-techniques-and-tools/

link|flag
vote up 1 vote down

There is a fair amount of activity on the subject of distributing fonts along with websites, but it's generally in the experimental stage, and won't work for the vast majority of browsers in use. In a few years you may be able to do this, but for the moment you would have to use an image or sIFR.

link|flag
vote up 1 vote down

Convert your TrueType font into an Embedded OpenType font (it's easy!) so that you have two font files:

  • Arial_Rounded_MT_Bold.ttf
  • Arial_Rounded_MT_Bold.eot

Then make your CSS look like this:

@font-face {
  font-family: 'Arial Rounded Bold';
  src: url('Arial_Rounded_MT_Bold.eot');
}
@font-face {
  font-family: 'Arial Rounded Bold';
  src: url('Arial_Rounded_MT_Bold.ttf') format('truetype');
}
h1.title {
  font-family: 'Arial Rounded Bold', serif;
}

Thanks to Internet Explorer, the EOT specification needs to be first, in a separate @font-face block and without the format attribute. More info here.

Enjoy!

link|flag
This looks pretty good and I will give it a try :) – flavour404 Nov 10 at 1:16

Your Answer

Get an OpenID
or

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