2011-03-28 submit to reddit

Ten Great Fonts and How to Create a Custom Font

Designing a website consists of tying together a plethora of design details into a single user-friendly experience. One of these important design details involves the font used to communicate the website's content to the visitor. Each font "says" something different about the website's brand, voice and credibility. Read on to discover the top ten go-to fonts for websites in 2011 and beyond.

Typography

Web-Safe Fonts

Unless visitors have the fonts on your website already installed on their computers, they won't be able to view the site content in the font you've intended as the designer. Therefore, there are certain web-safe fonts designers should use, because they ship standard with nearly every operating system and browser.

1. Georgia - Perhaps the most common serif font on the Internet, Georgia imparts a sense of depth and materiality to a website. Serif fonts are typically used in print, while sans-serifs are typically used online, so if you'd like for your website to look like a printed page, Georgia is a great font to use. The reason that serif fonts aren't usually used on the Internet is that they tend to be too complex and take up too much space, so Georgia is only good on sites that aren't already overly "busy" with various items, images and colors. It might work for a bare-bones blog or understated official business site.

2. Verdana - Verdana is probably the most commonly used sans-serif font online, and it is best described as an eminently readable version of the common fonts Arial and Helvetica. It's well-known that sans-serif fonts are better for "scanning" than serif fonts because the letters take up less space, but sometimes these fonts sacrifice readability for the speed at which they can be read. Verdana spaces the sans-serif letters apart, making each letter more readable. If you want a balance of scannability and readability, Verdana is a great choice. It brings emphasis to the content by making its own details invisible.

3. Trebuchet - For designers who want to impart a sense of artistry while maintaining a mainstream sensibility, the bold stylings of Trebuchet might be just the font required. This font is characterized by large lower-case letters, soft curves and use of diagonals. Trebuchet is best for websites that don't have too much text in any given block, as the details in each letter might be a bit much for long paragraphs.

4. Arial/Helvetica - The most common print sans-serif fonts still see plenty of use on the Internet, especially in larger sizes. Arial and Helvetica are known among font enthusiasts by the narrowness of each letter, making them useful for blocks of text meant more to be scanned than actually read in full. You can fit a lot of Arial or Helvetica text into any given space, but if the font size is relatively small, you may sacrifice significant readability. Still, for titles, promotions or large-font websites, Arial and Helvetica are invaluable mainstays of the font world.

5. Garamond - A readable serif font, Garamond sees plenty of use on sites whose main source of content consists of long bodies of text. Readers may find it difficult to read long blocks of sans serif text, especially if the content of the text itself is very dense and thought-provoking. Often used in print magazines and newspapers, Garamond lends a sense of authority and legitimacy to your website.

6. Lucida Family (Sans, Grande, Console) - There are a variety of Lucida fonts in use between PCs, Macs and Linux machines. They are all surprisingly readable on the Web, interesting because they weren't specifically designed for screen viewing. Lucida Console, for instance, is perhaps the most standard monospace font. This font is defined by its lack of diagonal lines, which can feel overly stilted and mechanical to some. Great for titles and for other design accents, it is rare to find a website all in Lucida.

7. Courier New - The mainstay of the coding world, Courier New is a useful monospace font to mark programming, jargon, or other field-specific-language differently from mainstream language on your website. Like Lucida, it is more commonly used to accent a website and give it a mechanical, system-controlled quality. Also used if you want to mimic a typewriter.

Web 2.0 Fonts

These fonts will always be used for accenting a website with headings, buttons and other graphic design elements, as they probably won't be included in a standard font package. You will have to find and download these fonts for yourself, then create images with them if you want viewers to see them.

8. Moderna - A well-balanced, rounded font, Moderna is just quirky enough to still look professional. It is very 21st century business, meaning that it implies both a sense that each user is in control as well as a sense that the site and its products will be reliable. Perfect for interactive Web 2.0 sites.

9. Photonica - This wide, techy, futuristic font emphasizes a disjunction between corners and curves, between the diagonal and the straight. Photonica calls to mind the science fiction of the 1980s and 1990s, and may be best used as an accent on computer, science and any tech-related sites.

10. Ubuntu Title - A great, readable font for inserting into tight spaces while maintaining a sense of individuality and uniqueness, Ubuntu Title is perfect for buttons, labels and other design elements that you're working to ensure fit. The rounded edges of each letter make this font simultaneously approachable and casual, while the lack of diagonal lines imparts a sense of easy professionalism.

Custom Font Integration - @fontface and Cascading Style Sheets

Have you ever wanted to add your own font to a web site, but were afraid no one would be able to see it? If a visitor doesn’t have the font, only the default font configured for their browser will display. This could be Courier or Times New Roman, but definitely not the font you intended them to see.

Thanks to CSS 3.0, this is no longer an issue. You’ll be pleased to learn that you can now imbed your own font into that web site and it doesn’t have to be a font image. Using a cascading style sheet (CSS), this capability is easily achieved and we’ll explain how it’s done in this article.

Actually, the ability to imbed a font was defined in CSS 2.0, yet left unavailable in CSS 2.1. Internet Explorer was the first to support it in 1997, but until now it’s never been standardized and accepted in a way that has received cross-browser acceptance. CSS 3.0 is the first to standardize it as a permanent feature.

Before diving headfirst into this new feature, be aware there are a few downsides to using imbedded fonts. First, they increase download size by as much as 25K or more. Second, visitors to your web site may receive a security warning, depending how they have their browser security set, and this may happen for each page on your site that has an imbedded font. For these reasons, it may be wise to use imbedded fonts sparingly and in limited distribution throughout your site.

Let’s take a look at how a basic custom TrueType font is imbedded on a web site. Imbedding a font is accomplished using the following basic steps:

1) Locate the font you want to imbed.
2) Attach the font to the cascading style sheet.
3) Use the font on a web page.

Locate the font

It’s easy to locate a font. Enter “free TrueType font” in your favorite web search engine and explore the results. Not all font manufacturers allow their font to be imbedded, so select the font carefully. TrueType fonts often have permissions set such that imbedding the font is blocked. Look for a font that will allow you to imbed it.

Attach the font

Attach the font to a CSS using @fontface, as shown in the following example:

@font-face {
   font-family: <user selected font>;
   src: <url to user selected font>;
   [font-weight: <weight>];
   [font-style: <style>];
}

Where:

<user selected font> is the name of the font.
src: URL to the remotely-stored font, including the font name (ex: /user/directory/test.ttf).
font-weight: Point size of the font.
font-style: Style attribute of the file.

Use the font

The last step in imbedding a font is using it on your web site. The example below shows how this can be implemented.

<XMP>
<html>
<head>
  <title>Imbedded Web Font Example</title>
  <style type="text/css" media="screen, print">
    @font-face {
      font-family: "<user selected font>";
      src: url("http://<url>=UserSelectedFont.ttf");
    }
   
    body { font-family: "Bitstream Vera Serif Bold", serif }
  </style>
</head>
<body>
  This is my custom web font.
</body>
</html>
</XMP>

The example above cites the font family as Bitstream Vera Serif Bold. This is only an example. Enter the information attributed to your particular font.

Conclusion

Thanks to CSS 3.0, imbedding a custom font is easy. Find the font, include it in a CSS, and then reference the font in the web site HTML.

The examples in this article provide a simple explanation based on True Type fonts. More complex examples can be accomplished by creating a .pfr Portable Font Resources TrueDoc file or an .eot Embeddable Open Type file, but these examples are outside the scope of this article.

For more information on integrating custom web fonts and web programming, consult your favorite search engine.

Add Your Thoughts

captcha

Gravatar

Commented by: Anders, 18 May, 2011

I usually prefer the "classic online fonts" but there are a couple websites that I believe have managed to take an unusual font and make it their own. Thinking about the New York Times and Swedish newspaper Svenska Dagbladet.

  • lightbox index
    2013-05-30

    The Basics of Lightboxes

    One of the biggest trends in web design to emerge over the past half-decade or so has been a move toward creating websites that appear more like standalone applications than like the traditional websites of an e...
  • 2013-05-09

    20 Best Responsive Web Design Tools

    As mobile devices have become a primary gateway to the Internet, developers have sought a way to make their websites friendly to virtually every screen size and device type, using either adaptive or responsive d...
  • 2013-03-06

    CSS for Beginners: An Introduction to Design and Presentation

    Any web designer aspiring to create stunning designs that conform to today's web standards has likely heard or seen the acronym "CSS" in numerous support forums, tutorials, and documents across the Internet. CSS...
    css small
  • 2013-02-21

    The 10 Best Joomla Extensions

    Over the past several years, Joomla has quickly become one of the leading content management systems on the planet, competing in a robust way with the likes of industry-leading WordPress and Drupal. Like many of...
    joomla extensions small
  • best cms 2013 index
    2013-02-19

    The 20 Best CMS for 2013

    With content marketing finally coming into the mainstream and search engines like Google focusing on quality content and even author rankings, the time has never been better to choose an industry-leading content...
  • design mockups index
    2013-02-12

    The 14 Best Tools for Design Mockups

    Creating a mockup for your client's website is an excellent way to begin the web design process. A mockup is a basic layout of text and other graphical elements on a website at the initial stage of web design. M...
  • 2013-02-08

    Improve Your Website's Speed to Enjoy Enhanced SEO and Usability

    The time it takes to load a website is one of the key factors considered by major search engines like Google when ranking websites in search results. Loading times also have a serious impact on conversion rates ...
    website speed index
  • responsive web design index
    2013-01-31

    A Guide to Responsive Web Design

    There are few design trends more prominent than responsive web design, which has rapidly become the preferred way to design websites in an era that is characterized by increasing smartphone adoption, the prolife...
  • 2013-01-25

    The 30 Best Web Accessibility Tools

    Creating web accessible forms can be a daunting task. With many different web standards and conventions, it can sometimes be hard to separate the noise from the useful information. While difficult, it is still n...
    web accessible index
  • web design 2013 index
    2013-01-14

    Web Design Trends to Look For in 2013

    While it might seem like web design has reached a point of maturity over the past couple of years, with designers focusing on multi-year trends like richer typography, larger fonts, and more personalized graphic...

1 2 3 4 5 6 7 8

Overall Best Web Hosts

1. $1.99Review
Visit Lowest Price Guarantee
2. $2.95Review
3. $4.95Review
Visit Lowest Price Guarantee
4. $3.99Review
5. $3.49Review
Visit Lowest Price Guarantee

Get hosting confidently - When signing up for one of the tagged hosting plans above you can be confident that you are getting the lowest price available for that plan.

Buying Guide

Can't decide what hosting is right for you? Answer 2-5 questions and get your perfect hosting match!

To Questions

User Reviews

Make your voice heard. Review your web hosting provider - good or bad.

  •  
  •  
  •  
  •  
Everything has been very stabile and I was very impressed with all the features and extras that were included in the plan.

Bill about iPage

Read iPage Review