Based on a hybrid of stars-and-stripes and neon signage, FREE is a custom display face “commissioned” for the rebranding of America. FREE is available for immediate download. DOWNLOAD
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z !
Small business owners are the new American revolutionaries
24pt
willing to lay down our lives, our fortunes & our honor
30pt
We strike out for freedom
36pt
We lead a movement toward a stronger,
48pt
more stable union that functions
60pt
on a more human scale
72pt
All heart & guts & grit
90pt
We find a way to do
120pt
what we love
144pt
our way
180pt
every day
220pt
Each character lends support to the next and belongs to a greater whole, as such the glyph set is crucial.
Webfonts are supported by all major browser platforms but not all in the same way. There are four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT, and SVG.
You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.
A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. The code for it is as follows:
@font-face {
font-family: 'MyWebFont';
src: url('WebFont.eot');
src: url('WebFont.eot?#iefix') format('embedded-opentype'),
url('WebFont.woff') format('woff'),
url('WebFont.ttf') format('truetype'),
url('WebFont.svg#webfont') format('svg');
}
We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:
p { font-family: 'WebFont', Arial, sans-serif; }
Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.
Troubleshooting
Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.
This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.
The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.
The primary reason for this failure? You are still using a version of Firefox older than 3.5. So upgrade already! If that isn't it. then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)
Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe Browser Lab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.
IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.
If you see FREE out in the world, please snap a photo and send it to us here.