views:

785

answers:

13

I'm a bit confused about the laws applied to web fonts. I know that it's OK to use fonts like Arial, Times Romans, Georgia, etc...I think it's illegal to use other commercial fonts. Are there websites that provide free fonts? If there are.

Can I just use them directly without mentioning the creator of the free font or without linking the page where I download them? or I have to?

How can I use fonts on the web if I'm not allowed to redistribute them in digital form?

+2  A: 

I believe most "free" fonts will come with a license file, describing exactly how you can use them.

zlack
A: 

Buy the font legally with a license that lets you use them in your project.

Ben S
+1  A: 

All fonts come with a license (of some sort), or a statement specifying the terms of use. This license dictates the terms under which you can use the fonts. To remain legal, just follow the terms of the license. If the license specifies that you have to mention the creator, then you do. If the license specifies that you have to pay for the fonts, then you do.

Robert Harvey
A: 

Here's one such site: FontForge.

Hope this helps you, Best regards, Tom.

tommieb75
+4  A: 

There are several issues here. Also, from your post it's not clear whether you intend to just reference the fonts in your app, package them with your app or display text in images that were produced with the fonts.

  • It is legal to use a font that's already installed on the user's system. That's why there's no issue with Arial, Times, etc. You are not redistributing them with your app.

  • When you redistribute a font with your app then you have to worry about licensing. Read the license carefully.

  • There are free fonts. These are available in various places under various free licenses. A little Googling turns up various pages with promising-looking free fonts.

You might look at the free fonts distributed with XFree86. They aren't as high-quality as the commercial fonts, though.

Nate C-K
+16  A: 

Be careful with "free" fonts on the web. Many are just copies of protected fonts with their copyright notices removed.

If you want to make sure, buy a font from one of the large houses like fonts.com or myfonts.com. Make sure you read their license. For example, if you buy a font, you are almost always free to use it in print products, on graphics on your web site, etc., but you are almost never allowed to re-distribute a digital version of the font, not even to display it on your web site using Tools like sIFR. If you want to make sure, and big things are at stake, make sure and contact the font vendor first.

There are genuine free fonts (they also come with a license but should be much more permissive than commercial fonts). Check out Ray Larabie's works for example, the Open Font library or the League of Movable Type.

Pekka
+3  A: 

That depends on how you use the font.

If you specify a font name in CSS, you can specify any font you like:

style="font-family:Some Commercial Font That You Do Not Own, Arial, sans-serif;"

If the visitor owns the font and has it installed, it will be used, otherwise the next fallback font (in this case Arial) will be used instead. As it's the visitor that has to own the font to see it displayed, you don't have to own the font just to put it's name in the code.

If you offer the font as download, naturally you need the permission of the creator unless the font is free distribute. If you embed the font you need to own it, but as it's not a download you don't need special permission to display it.

If you use the font in images that you display on your page, you need to own the font to create the images, but normally the images are then owned by you.

Guffa
This is not what he asked. He's asking about the license of fonts, not about how to do stuff like this. -1.
YourComputerHelpZ
@YourComputerHelpZ, Guffa specified the several cases where one might wish to use a "commercial" font and what the rules are in each case. Since the OP asked "Can I just use them directly without mentioning the creator of the free font or without linking the page where I download them? or I have to?", the answer is both cogent and detailed.
dnagirl
A: 

It is not a commercial/free issue only. You have other things to take in account. Some font licenses allows embedding (in a document, for example) while others don't. AINAL but I think some commercial fonts allowing embedding might prohibit a person holding a document to reuse the distributed font.

Note that most fonts (at least the commercial ones) have license metadata: you can see it with an hex editor, or some appropriate reader. I used to install a Microsoft shell extension adding font information tab(s) to the properties of the file. A useful tool.

PhiLho
+2  A: 

You might be interested in new services such as fontsquirrel or typekit that allow you to pay a recurring fee in exchange for access to a database of commercial fonts that are fully licensed and legal.

http://www.fontsquirrel.com/

http://typekit.com/

dagoof
A: 

It's not something you could possibly answer; if everything's good the font should include a license file, containing information about how you can distrubute it.

If there are no license files in the font package; don't use it. Often it's a illegal copy of some other font. Listen to what i say; 'often'.

Do a search on Google before you ask where to get this free fonts. Most of the time, the top results will display legit websites. 'Most of the time'; remember. Always check if there's a license file.

Sometimes the license is included in the website. Make sure to check that one.

YourComputerHelpZ
A: 

The webfonts wiki attempts to keep track of compatibly licensed fonts, though the list of free ones is quite short.

Steve Gilham
A: 

Actually, it is illegal to use fonts like Arial, Times Romans, Georgia as web fonts. You can reference them, but including them as web fonts with @font-face is illegal without a license.

Most fonts with an open source license are legal to use.

Eli Grey
+3  A: 

You can use all fonts of Google Font API.

From the FAQ:

Can I use the Font API on any page?

Yes. All the fonts in the Google Font Directory are licensed under open source licenses that let you use them on any website, from a private blog to a big commercial site.

asalamon74
That is really great!
janoChen