Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Helvetica Neue Light with @font-face .. legal? [closed]

Tags:

css

font-face

My team and I have developed a site using the Helvetica Neue Light font face via @font-face in our stylesheet.

We're curious about whether it's legal for us to do this and who owns that font (if anyone?) Does anyone know how we can find this out - google just shows lots of sites trying to sell us the font.

I understand it's a system font on most mac computers, so maybe its license is pretty open?

like image 798
John Hunt Avatar asked Mar 30 '11 00:03

John Hunt


People also ask

Do you need a license to use Helvetica Neue?

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. One option is to use Helvetica Neue if it's system-installed and fall back to some other sans-serif font like Arial if it's not.

Is the Helvetica font copyrighted?

While a few names, such as Courier are in the public domain, most of the familiar font names such as Arial or Helvetica are the trademarks of one company or another. The computerized data making up the font is subject to copyright in the United States and some other countries.

Which font is close to Helvetica Neue?

Nimbus Sans Designed by type foundry URW, Nimbus Sans is a great Helvetica replacement.

Is there a difference between Helvetica Neue and Neue Helvetica?

What is the difference between Helvetica and Neue Helvetica? First, a bit of history. The original Helvetica design was created by Max Miedinger and released by Linotype in 1957. The second, Neue Helvetica, was a re-working of the 1957 design and was released in 1983 by D.


1 Answers

If you are just referencing the users system fonts then the licensing requirement is on the User.

If you are providing the font then you (or your client) will need to licence the Font -- even if it's a free font there will likely be some form of licence.

@font-face uses two forms of reference: LOCAL which references the user's system font and URL which effectively uses a copy of a font which you provide and as there is very little point in using the @fontface rule if you aren't going to provide the font then it's almost certain that you'll need to actively obtain a licence.

for example:

@font-face {   font-family: myHelveticaLight;   src: local("Helvetica Neue Light"),        local("HelveticaNeue-Light"); } 

Here you are only referencing a user's installed system font and therefore have no have responsibility for obtaining the licence.

In the following example you are also providing a fallback copy of the font so you must have actively obtained a web licence for that font (or rather your client or the website owner will need to)

@font-face {   font-family: myHelveticaLight;   src: local("Helvetica Neue Light"),        local("HelveticaNeue-Light"),        url(HelveticaNeueLight.ttf); } 
like image 116
Chris Bentley Avatar answered Oct 12 '22 03:10

Chris Bentley