views:

118

answers:

1

Hello!

A project I'll be working on in the near future requires me to do some font replacement for some headings and small portions of the copy (blockquotes, etc)

The catch is that the designer wants to use Helvetica Neue.

I've looked at Typekit, Fontdeck, Google Fonts, and FontSquirrel and they don't seem to have said font nor anything really all that comparable.

I'm aware that We could use something like sIFR or Cufon, and I haven't ruled those out.

Are there any services on the web that this font can be purchased/rented/etc from?

+2  A: 

You can host fonts on your server, and use the CSS @font-face rule to display those fonts on your web site. However, you need check the font license very carefully. The fonts hosted by Google and others tend to be chosen because they have an open license.

Fonts like Helvetica have fairly strict commercial licenses. So although you could buy one of the Helvetica variants for around $30, you might not be able to use it on the web site. This article may be of some assistance:

http://fontfeed.com/archives/new-end-user-licence-agreement-for-fontfont/

You might also want to have a look at Helvetica Neue: The Ugly Truth, which describes how some browsers have trouble rendering your designer's font of choice.

It may be that other fonts have less restrictive licenses. Bitstream's Swiss 721, for example, is very similar to Helvetica, but at first glance (and that's as far as I have got), the license is a little less restrictive.

A quick email to the font forge might be easier than reading the license. Helvetica is a Linotype font.

Mike
fonts.com has a webfonts services in beta, and they supply all weights of Helvetica Neue. This will probably be the solution we go with. All that said, if there was a service / tutorial on how to host them from your own site properly, that'd be a great help. Thanks for the help!
cdutson
http://typefront.com/ is a solid source for hosting your own fonts. Not quite the same as hosting from your own server (and not nearly as free) but it's an option for custom tooled fonts.
cdutson
@cdutson: Hosting your own is as simple as putting the font file on your server, and specifying the URL in the `@font-face` rule. Check out this article: http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/ and this one: http://www.sjlwebdesign.co.uk/sjl-blog/index.php/web-design/using-font-face/ I've also just spotted this link which might be useful: http://webfonts.info/wiki/index.php?title=Commercial_foundries_which_allow_%40font-face_embedding
Mike
was going to mention http://webfonts.fonts.com with their beta program as they have so many fonts and I believe this would be a great solution whenever it launches properly (applied today for beta, waiting for my invite).
Alex
thank you both for your help!
cdutson