How to • Type

If you want to use a particular font in your page design, you must give the font to readers using one of two methods:

  1. Link the font file to your page using the @font-face rule in your CSS style sheet. (Remember to upload the font file to the server.)
  2. Link to a Google Font with the supplied link.

As a precaution, you should include a list of additional fonts (“font stack”) in which you would like to see your text displayed, in the event your first choice doesn't work for some reason. The font-stack should end in a generic specification, such as serif, sans-serif, monospace, cursive, or fantasy.

    font-family: Roboto, Helvetica, Arial, sans-serif;