10

I have seen a few of the the websites using font family:

font-family: 'Helvetica Neue',Helvetica,Arial,Sans-Serif

I remember reading in some older question here on stackoverflow that the Helvetica font is not free, and it is available on Mac only, is it so? I'm using windows XP and I can see that Font being rendered is 'Helvetica Neue', and I don't remember installing any font by myself. so all I wanted to ask is if it is safe to use the above font family? (eg. will most of the windows computers render those fonts? )

Thanks.

user1117313
  • 1,923
  • 9
  • 26
  • 36
  • 1
    Arial is very close to Helvetica and comes on Windows. The Neue variant is typically another matter. – reisio Jan 02 '12 at 08:34
  • this Q on topic and answered at http://graphicdesign.stackexchange.com/questions/8827/helvetica-neue-equivalent-on-google-fonts/ (also note the linked questions on that page) – matt wilkie May 20 '16 at 16:53

5 Answers5

14

Helvetica comes free with mac but not with windows. You will have to buy it. But if you have installed Adobe products it will be installed with many other fonts that come packed with Adobe.

'Helvetica Neue' is the newer version and has slight modification than the older one with correction of few problems that occurred with helvetica.

Subash
  • 7,098
  • 7
  • 44
  • 70
7

If you want to use any font in your website you can use this:

 @font-face {
font-family: 'Helvetica Neue';
src: url('Helvetica-Neue-webfont.eot');
src: url('Helvetica-Neue-webfont.eot?#iefix') format('embedded-opentype'),
     url('Helvetica-Neue-webfont.woff') format('woff'),
     url('Helvetica-Neue-webfont.ttf') format('truetype'),
     url('Helvetica-Neue-webfont.svg#Helvetica Neue') format('svg');

  }

To use any paid fonts, you should buy the font and put it in your folder. Use this site to create all types of formats: http://www.fontsquirrel.com/

Emanegux
  • 1,092
  • 2
  • 20
  • 38
sumit kumar ray
  • 230
  • 3
  • 9
2

Helvetica Neue is not free with Windows. However, if you install Adobe software it will install an altered version which can cause problems.

Wouter Dorgelo
  • 11,770
  • 11
  • 62
  • 80
  • An example of such issues at http://meta.stackexchange.com/questions/141362/whats-wrong-with-the-character-encoding-in-the-blog – Arjan Jul 27 '12 at 14:17
1

Helvetica Neue has been blacklisted from @font-face generators like fontsquirrel.

I think the font stack that is quoted in the first post is the best approach.

Steve
  • 11
  • 1
1

All windows computers will render that font, if the font is introduced with @font-face in the CSS. With @font-face fonts can be used anywhere on the web page, even if the font isn't installed on the user's computer.

Different55
  • 577
  • 2
  • 17