Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Helvetica Neue in a Website

Tags:

Normally, I use "Helvetica Neue" for the fonts in some websites although looking at other sites, I've seen some with "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue".

Is there any reason to reference Helvetica Neue in this way? Or should I stick with the normal that I use?

like image 985
user1505209 Avatar asked Aug 22 '12 09:08

user1505209


People also ask

Is Helvetica Neue a web-safe font?

It's a default font on Macs, but rare on PCs. Since it's not technically web-safe, some people may have it and some people may not.

Is Helvetica good for website?

Well, the bottom line is that it is best to not use Helvetica for text on web pages. Instead, use one of the sans serif fonts that are supported on both PCs and Macs; Arial, Tahoma, Verdana and Trebuchet MS. If you want to use Helvetica or other fonts, by all means use them in graphics, but not in HTML text.

Do you need a license to use Helvetica Neue?

This font is commercial property and is not allowed to use without proper licensing for usage. It's legal to ask the browser to use Helvetica Neue if it's available on the system, but you'd need a license if you want to serve the font yourself.

How do I use Helvetica Neue font in HTML?

The browser will attempt to match each font name with any installed fonts on the user's machine (in the order they have been listed). In your example "HelveticaNeue-Light" will be tried first, if this font variant is unavailable the browser will try "Helvetica Neue Light" and finally "Helvetica Neue" .


1 Answers

I'd recommend this article on CSS Tricks by Chris Coyier entitled Better Helvetica:

http://css-tricks.com/snippets/css/better-helvetica/

He basically recommends the following declaration for covering all the bases:

body {     font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;      font-weight: 300; } 
like image 171
Billy Moat Avatar answered Sep 30 '22 18:09

Billy Moat