One place for hosting & domains

      Fonts

      How To Load and Use Custom Fonts with CSS


      The author selected the Diversity in Tech Fund to receive a donation as part of the Write for DOnations program.

      Introduction

      The visual identity of a website is largely dictated by two principles of design: color and typeface. In the last decade, there have been great strides in providing custom fonts to users with more preloaded fonts on devices, the ability to load custom fonts with the @font-face rule, and the use of font hosting services. Web browsers have also implemented support for variable fonts, which are single font files from which multiple fonts can be interpolated, providing a high-degree of tuning and font customization.

      In this tutorial, you will try out examples of loading fonts onto your website. You will use the font stack, a rank ordering of fonts based on availability, to use fonts that may be installed on the user’s device. Then, you will use a font-hosting service, Google Fonts, to find, select, and load custom fonts onto your page. Lastly, you will load a self-hosted font family using the @font-face rule, followed by a self-hosted variable font.

      Prerequisites

      • An understanding of CSS’s cascade and specificity features, which you can get by reading How To Apply CSS Styles to HTML with Cascade and Specificity.
      • Knowledge of type selectors, combinator selectors, and selector groups, which you can find in How To Select HTML Elements to Style with CSS.
      • An understanding of font stacks and font properties in CSS, which you can find in the tutorial How To Style Text Elements with Font, Size, and Color in CSS.
      • An empty HTML file saved on your local machine as index.html that you can access from your text editor and web browser of choice. To get started, check out our How To Set Up Your HTML Project tutorial, and follow How To Use and Understand HTML Elements for instructions on how to view your HTML in your browser. If you’re new to HTML, try out the whole How To Build a Website with HTML series.

      Setting Up the HTML and Creating the Initial Font Stack

      The concept of a font stack comes from early in the web, when there were only a few trustworthy fonts that one could installed on the majority of computers. It was often likely the font would not be available, so the font stack provided an order of fonts that the browser could attempt to find and load. In this section, you will learn the principles of a resilient font stack and what options are available for fonts on modern devices. But first, you will create example HTML to demonstrate the fonts.

      Begin by opening index.html in your text editor. Then, add the following HTML to the file:

      index.html

      <!doctype html>
      <html>
        <head>
          <meta charset="utf-8" />
          <meta name="viewport" content="width=device-width, initial-scale=1" />
          <title>A Demo Font Family Page</title>
          <link href="https://www.digitalocean.com/community/tutorials/styles.css" rel="stylesheet" />
        </head>
        <body>
        </body>
      </html>
      

      Inside the <head> tag, the first <meta> tag defines the character set for the HTML file. The second <meta> tag defines how mobile devices should render the page. Next, the <title> tag gives the page its title. Finally, the <link> tag references the CSS file you will use later to create the styles for the page.

      Next, inside the <body> tag, add the content of the page. This content is known as filler content from Cupcake Ipsum and it provides text to appear like content without actually saying anything. The filler content is highlighted in the following code block. You will encounter this highlighting method throughout the tutorial as code is added and changed:

      index.html

      <!doctype html>
      <html>
        <head>
          <meta charset="utf-8" />
          <meta name="viewport" content="width=device-width, initial-scale=1" />
          <title>A Demo Font Family Page</title>
          <link href="https://www.digitalocean.com/community/tutorials/styles.css" rel="stylesheet" />
        </head>
        <body>
          <main>
            <header>
              <div class="content-width">
                <h1>Sweet strawberry cheesecake</h1>
                <p><em>Sweet muffin bear claw</em> donut chupa chups liquorice tiramisu candy canes sweet.</p>
              </div>
            </header>
      
            <div class="content-width">
              <p>Chocolate shortbread caramels tootsie roll tiramisu sweet dessert apple pie fruitcake. <strong>Croissant icing chupa chups</strong> sweet roll cake tart fruitcake soufflé jujubes. Shortbread brownie tootsie roll ice cream pudding dessert marshmallow sesame snaps. Cake pie jujubes lemon drops sesame snaps soufflé cookie jujubes wafer. Caramels ice cream fruitcake pastry cheesecake chocolate tootsie roll cake marshmallow. Pie candy canes cupcake dragée bonbon fruitcake marzipan. Tootsie roll halvah bonbon cake muffin gummies. Bonbon cotton candy marzipan cake sesame snaps chupa chups donut dessert. Macaroon gummies macaroon biscuit chocolate carrot cake gummi bears.</p>
      
              <h2>Donut candy canes cotton candy</h2>
      
              <p><strong><em>Liquorice gingerbread tiramisu</em></strong> pie bonbon soufflé. Jujubes tootsie roll muffin gingerbread powder. Carrot cake halvah chocolate bar tart sugar plum sugar plum pastry. Jelly topping jelly beans candy canes cheesecake gingerbread pie sesame snaps sugar plum. Pie cheesecake pudding jelly brownie jelly beans halvah. Ice cream powder carrot cake bear claw cake cheesecake.</p>
      
              <p><em>Jelly-o jelly-o jelly</em> lollipop croissant. Carrot cake tart danish macaroon dragée gingerbread. Sugar plum cotton candy biscuit <strong>fruitcake powder liquorice</strong>. Shortbread candy pie tart pudding. Sesame snaps bear claw tart tiramisu donut chocolate cake. Cheesecake tiramisu chocolate cake dessert dessert candy candy canes apple pie marshmallow. Sweet croissant pudding toffee tootsie roll gummies tart pastry pie. Candy apple pie cake wafer tootsie roll tart icing halvah.</p>
      
              <h3>Gingerbread gummi bears</h3>
      
              <p><em>Tiramisu sweet pastry</em> danish topping ice cream caramels. Tiramisu candy liquorice jelly-o marzipan candy canes cupcake topping. Gummi bears jujubes carrot cake shortbread sesame snaps marshmallow danish pudding cotton candy. <strong>Cake jujubes biscuit</strong> topping marzipan sweet roll apple pie bonbon. Bear claw donut bear claw bonbon caramels halvah gummi bears. Gummi bears apple pie jelly-o donut sesame snaps icing marzipan.</p>
      
              <p><strong><em>Bonbon chupa chups</em></strong> donut dessert pudding. Sweet roll caramels dessert muffin croissant. Powder chocolate lollipop ice cream bonbon pie candy muffin cotton candy. Fruitcake topping chupa chups toffee jelly-o halvah. Candy soufflé toffee gummies fruitcake oat cake chocolate cake. Dessert cupcake cheesecake sweet roll bear claw. Marshmallow halvah bear claw biscuit dragée marzipan lemon drops jelly.</p>
            </div>
          </main>
        </body>
      </html>
      

      The filler content contains a number of elements that are used to provide different font styles. The <strong> tag will by default make its content bold, the <em> tag will italicize its content, and the heading tags will increase the font size and bold their content.

      Next, return to your text editor and create the styles.css file in the same folder as index.html. This is the file that you referenced in the <head> element of index.html. In the styles.css file, add the following code:

      styles.css

      body {
        margin: 0;
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 10%);
        line-height: 1.5;
      }
      
      .content-width {
        max-width: 70ch;
        width: calc(100% - 4rem);
        margin: 0 auto;
      }
      
      main {
        margin-bottom: 4rem;
      }
      
      header {
        margin-bottom: 4rem;
        padding: 2rem 0;
        background-color: hsl(280, 50%, 40%);
        border-bottom: 4px solid hsl(300, 50%, 50%);
        color: hsl(300, 50%, 90%);
      }
      
      header p {
        color: hsl(300, 50%, 85%);
      }
      
      h1, h2, h3 {
        margin: 0;
        line-height: 1.25;
      }
      
      h2, h3 {
        color: hsl(280, 50%, 40%)
      }
      

      These styles create the overall visual style of the page. The header has a purple background with the h1 and p inside being a light purple. The main and .content-width selectors create the layout of the page, and the body and heading selectors provide several typographic styles by setting the line-height, color, and margin values.

      Save your changes to styles.css, then open your web browser. Open index.html in the browser by dragging the file into the browser window, or using the browser’s Open File option. The browser will render the HTML and CSS code to produce a page like the following image:

      Large purple block with white text in a serif font inside. Below there are several paragraphs of serif text in a dark gray with purple bold serif headings.

      The text of the index.html file in your browser will be using the browser’s local default font. In most cases, this will be a serif font like Times New Roman. The most performant way to customize fonts is to use fonts already on the end user’s computer. Using local fonts relieves the browser of downloading and processing sizable files.

      Today, there are often several dozen local fonts to choose from; these are known as system fonts. Both Microsoft and Apple keep an updated list of the fonts that come with their systems.

      To begin using pre-installed system fonts, return to styles.css in your text editor. In the body selector, add a font-family property, and make its value a comma-separated list of fonts known as a font stack:

      styles.css

      body {
        margin: 0;
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 10%);
        line-height: 1.5;
        font-family: "PT Sans", Calibri, Tahoma, sans-serif;
      }
      ...
      

      The browser will sequentially attempt to load the local fonts in the font stack until it is successful. For this font stack, the first font to attempt is "PT Sans", which is in quotes because it is a multi-word font name. PT Sans is a font from ParaType that comes pre-installed on Apple operating systems and is also available for free from Google Fonts. The next font is Calibri, followed by another comma and Tahoma. Calibri is a font from Microsoft that comes installed on recent version of Windows, and Tahoma is another font from Microsoft that has been present on Apple operating systems for over a decade.

      The final font is the generic name-spaced value sans-serif. If none of the previous three fonts are available, then the browser will use the browser’s default sans-serif font, such as Helvetica or Arial.

      Save your changes to styles.css and then refresh index.html in your browser. Your operating system and installed fonts will determine which font is rendered and how it is rendered. The following image shows how PT Sans appears as the font when loaded in Firefox on macOS:

      Large purple block with white text in a sans-serif font inside. Below are several paragraphs of sans-serif text in a dark gray with purple bold sans-serif headings.

      A font family consists of all the weight and style variations of a given font. Families can include many additional weight and styles that change how thin, thick, and slanted a font will display.

      The font-style property determines the slant of the font. The value is most commonly italic; however, some fonts support the oblique value, which accepts an optional degree value to indicate the steepness of the slant.

      The font-weight property has two defined named values of normal and bold, but the most versatile and predictable manner to determine this value is to use a weight number. The weight number values are commonly defined in increments of 100 from 100 to 900, with 100 being a thin weight and 900 being a thick weight. If the browser cannot find a font corresponding to the specified weight, it will find the closest available size.

      To set some new base font styling for this page throughout the tutorial, return to styles.css in your text editor. Then create an element selector for each of the h1, h2, h3, and p elements. Inside each selector, add the highlighted CSS from the following code block to increase the font size and emphasize the headings:

      styles.css

      ...
      h2, h3 {
        color: hsl(280, 50%, 40%)
      }
      
      h1 {
        font-size: 3rem;
        font-weight: 100;
      }
      
      h2 {
        font-size: 2rem;
        font-weight: 200;
      }
      
      h3 {
        font-size: 1.75rem;
        font-style: italic;
        font-weight: 200;
      }
      
      p {
        font-size: 1.125rem;
      }
      

      The h1 here is set to a font-size of 3rem, which is equivalent to 48px, with a thin font-weight of 100. Then, the h2 is set to 2rem, equivalent to 32px, and a font-weight of 200. Next, the h3 is set to the same font-weight and a slightly smaller font-size as the h2, but gains an added font-style property set to italic. Lastly, the p element selector bumps up the standard font-size to 1.125rem, which is equal to 18px in this case. The adjustments to the overall styling of this text will remain the same as you change the font used in each section.

      Save the changes to styles.css, then return to your browser and refresh index.html. The overall text size has bumped up, with the heading styles gaining more distinction from one another. The following image shows how this will appear in the browser:

      Large purple block with white text in a sans-serif font inside. Below are several paragraphs of sans-serif text in a dark gray with purple thing sans-serif headings. The font sizing has increased overall.

      In this section, you used the font stack to load a series of possible fonts on the page in a ranked order. You also learned about the possible variations of a font family with the font-weight and font-style properties. In the next section, you will use a font from a font hosting service.

      Finding and Loading a Font File from a Hosted Service

      Hosted font services are a popular and effective way of finding and providing custom fonts to a websites. Services such as Google Fonts, Adobe Fonts (formerly Typekit), and Typography.com provide a large library of high-quality fonts that a client will temporarily download when viewing your page. This means that you no longer have to worry about which fonts are on the client’s system.

      Each font hosting service has its own process for loading fonts, and in many cases there is an associated cost. For this section, you will find and load fonts from Google’s service, as it hosts open-source and limited license fonts free of charge.

      To begin, open fonts.google.com. Search for the font named “Open Sans” using the search bar at the top of the page. The search results will list the matching term, which is a link taking you to the Google Fonts Open Sans page. On this page, there is a list of several font styles. Each one of these font weight and style combinations is a unique font file that the browser will download.

      Note: Each font-weight and font-style will need to be selected based on need, instead of selecting them all. More fonts selected means more fonts need to be downloaded, thus increasing the website load time. It is important to only load the font weights and styles that are used in your design.

      For this design, select Light 300, Light 300 italic, Regular 400, Regular 400 italic, Bold 700, and Bold 700 italic. The following image displays how this selection will look in Google Fonts:

      View of the Google Fonts interface with a listing of font weights and styles on the left. On the right is a listing of selected fonts weights and styles with code text below.

      Next, copy the <link> tags necessary to load the files from the Google Fonts service. To do that, select the <link> option instead of the @import option as the way to load the files in the Google Fonts interface. Copy the series of <link> tags presented. Then, return to index.html in your text editor. Go inside the <head> element and, after the <link> tag loading styles.css, paste the <link> tags from Google Fonts. The highlighted HTML in the following code block demonstrates where to add the copied code:

      index.html

      <!doctype html>
      <html>
        <head>
          ...
          <link href="https://www.digitalocean.com/community/tutorials/styles.css" rel="stylesheet" />
          <link rel="preconnect" href="https://fonts.googleapis.com"> 
          <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
          <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
        </head>
        <body>
          ...
        </body>
      </html>
      

      The first two <link> elements perform a task called a preconnect, which tells the browser to prioritize an external web connection. In turn, these two <link> elements prepare the browser to load the CSS file and font files from the third <link> as soon as possible.

      Now that the font is ready for the browser to load it on to the page, next you need to apply the font styling so the text is rendered with that font.

      Save your changes to index.html, then return to styles.css in your text editor. In your body selector, go to the font-family property. Prepend the value with the font name "Open Sans" in quotes before the "PT Sans" font, followed by a comma. The highlighted CSS in the following code block shows where the new font is placed in the font stack:

      styles.css

      body {
        margin: 0;
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 10%);
        line-height: 1.5;
        font-family: "Open Sans", "PT Sans", Calibri, Tahoma, sans-serif;
      }
      ...
      

      By adding Open Sans to the beginning of the font stack, the browser will fallback to the next available local font if the browser is unable to load the files from Google. It is important to always have a font stack of at least two, with the last font in the stack being sans-serif, serif, monospace, or another named value that most effectively resembles the intended font.

      Save your changes to styles.css and open index.html in the web browser. The text on the page will now render using the Open Sans font loaded from Google Fonts. The text with a font-weight set to 100 and 200 will instead use 300 since that is the closest available. The following image illustrates how this will appear in the browser:

      Large purple block with white text in a sans-serif font inside. Below are several paragraphs of sans-serif text in a dark gray with purple thin sans-serif headings.

      In this section, you loaded a font family from Google Fonts. You learned how each font weight and style is a different file loaded from the service, and that the number of loaded variations can impact site performance. In the next section, you will load the fonts by writing your own @font-face rule to populate self-hosted font files.

      Loading a Self-Hosted Font with @font-face

      Self-hosted fonts are font files that are stored on your server alongside the other web components, such as HTML and CSS files. A common reason to consider self-hosting your font files is when you want to use a font that is not provided by a hosting service. When self-hosting, there is more control over how the fonts relate to one another and what they are named, which you can set via the definitions of the @font-face rules. In this section, you will write your own @font-face rules and load a family of fonts onto your web page.

      For this section, you will need to download the example zip file containing open-source fonts. You can download this through your browser or use the following curl command:

      • curl -sL https://assets.digitalocean.com/articles/68060/fonts.zip -o fonts.zip

      Once you have downloaded the file, extract the fonts directory contained in the zip file and place it in the same directory as the index.html and styles.css file on your computer. On Linux, you can do this from the command line with the following unzip command:

      Next, open up index.html in your text editor. Since you will be loading a local font from the zip file, you can remove the Google Font code. In this section, you will be loading the font files from your existing styles.css file. Make sure the contents of your <head> element are set up like the following code block:

      index.html

      <!doctype html>
      <html>
        <head>
          <meta charset="utf-8" />
          <meta name="viewport" content="width=device-width, initial-scale=1" />
          <title>A Demo Font Family Page</title>
          <link href="https://www.digitalocean.com/community/tutorials/styles.css" rel="stylesheet" />
        </head>
        <body>
          ...
        </body>
      </html>
      

      Save your edits to index.html, then open styles.css in your text editor.

      You can use the @font-face rule to load a custom font on a web page. The history of loading custom fonts has lead to a compound method to support the widest number of browsers. Unlike other at-rules, like @media or @supports, the @font-face rule has no additional arguments. Inside the rule block, only a set number of properties are accepted. The most important is font-family, which describes the name the browser will use to reference and load the appropriate font files. Then, the src property references the location of the font files. In order to support versions of Internet Explorer prior to version 9, two src properties are necessary, with the first only referencing the .eot font file format. The second src property will then be a comma separated list of font file formats. The browser version will select the appropriate format that it supports.

      To begin using the @font-face rule, open styles.css in your text editor. At the top of the file, before the body selector, create the following @font-face rule:

      styles.css

      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Regular.eot');
        src: url('fonts/fira/eot/FiraSans-Regular.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Regular.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Regular.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Regular.ttf') format('truetype');
      }
      
      body {
        ...
      }
      ...
      

      Inside this rule, you’ve added a font-family property with a value of "Fira Sans" in quotes. Since this code is defining an overall font-family, only one font name should be used. The comma separated list of font formats for src is two parted. The first is the url() that, like a background-image property, provides the path to the file format on the server. Then, the format() explains what type of file is being referenced, allowing the browser to select the supported format.

      The fira folder inside the fonts folder contains four folders with specific file formats of the Fira Sans font. EOT stands for Encapsulated OpenType, a format Microsoft developed for Internet Explorer to load custom fonts. TTF stands for TrueType Font, and is an older font format that wasn’t originally developed for the web. The WOFF and WOFF2 formats stand for Web Open Font Format, with the “2” signifying the second version of the format. The majority of modern browsers support TTF, WOFF, and WOFF2 equally. To create an @font-face rule that covers the most possible browser formats, you provided multiple sources for your font. The EOT is referenced in both src properties because version 9 and later of Internet Explorer use the comma-separated format instead.

      Now that you have the @font-face rule for Fira Sans created, go to the font-family property in the body selector. In the value for the font-family, replace "Open Sans" with "Fira Sans" to use the self-hosted font on your page. The highlighted portion of the following code block demonstrates this change:

      styles.css

      @font-face {
        ...
      }
      
      body {
        margin: 0;
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 10%);
        line-height: 1.5;
        font-family: "Fira Sans", "PT Sans", Calibri, Tahoma, sans-serif;
      }
      ...
      

      Even though the fonts are being loaded from the same place as the styles.css and index.html file, it is important to keep a font-stack of alternates. There are numerous unknown reasons a self-hosted font may not load, and if the browser runs into an issue, a sufficient backup helps to maintain a similar aesthetic for your site.

      Save your changes to styles.css and open index.html in a web browser. Notice that the bold and italics versions of the font do not look quite right. This is because in the @font-face rule only the regular font weight and style files were loaded and used. When the browser needs to apply a bold weight or italic style to a font, but lacks the appropriate font file, the browser creates the needed variation. This altered form of a font is known as a faux bold and faux italic. Faux bold is created by adding a stroke to the font, which often creates a wider spacing between characters that could interfere with your intended layout. Faux italic is created by slanting the font, which often does not use space as well as a true italic would.

      The following image shows how the faux bold, italic, and bold italic styles appear in the browser:

      Three lines of text, the first with a generated bold style, the second with a generated italic style, and the last with a generated bold italic style.

      In order to provide the browser with the appropriate variations of a font family, more details need to be provided in the @font-face rule, and you need to create more rules to load additional variation files.

      Return to styles.css in your text editor. In the @font-face rule, add a font-weight and a font-style property after the second src property:

      styles.css

      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Regular.eot');
        src: url('fonts/fira/eot/FiraSans-Regular.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Regular.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Regular.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
      }
      ...
      

      Here you set the value for both properties to normal. For the font-weight, the normal value is equivalent to the 400 numerical weight value. These properties tell the browser to apply these font files for normal variations. Thus the FiraSans-Regular font file will be used when the text needs to be a normal weight and style.

      Next, to provide the variations needed to correct the faux bold and faux italic, add more @font-face rules to reference each font-weight and font-style combination:

      styles.css

      /* Fira Sans Regular */
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Regular.eot');
        src: url('fonts/fira/eot/FiraSans-Regular.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Regular.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Regular.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
      }
      
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Italic.eot');
        src: url('fonts/fira/eot/FiraSans-Italic.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Italic.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Italic.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Italic.ttf') format('truetype');
        font-weight: normal;
        font-style: italic;
      }
      
      /* Fira Sans Bold */
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Bold.eot');
        src: url('fonts/fira/eot/FiraSans-Bold.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Bold.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Bold.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Bold.ttf') format('truetype');
        font-weight: bold;
        font-style: normal;
      }
      
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-BoldItalic.eot');
        src: url('fonts/fira/eot/FiraSans-BoldItalic.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-BoldItalic.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-BoldItalic.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-BoldItalic.ttf') format('truetype');
        font-weight: 700;
        font-style: italic;
      }
      ...
      

      As more variations are added, it is helpful to add comments to more easily identify the group of font weights. You therefore added a CSS comment above the first @font-face rule. Then, below the first rule, you created three more @font-face rules for the italic, bold, and bold italic variations of the font.

      Save these updates to your styles.css file, then refresh index.html in the browser. Your browser is now loading all the variations of the font family provided. The following image showcases the differences between the faux and true versions of bold, italic, and bold italic:

      A comparison of text with a list of browser generated bold, italic, and bold italic styles on the left and the true font styles on the right.

      The true bold is much thicker than the browser’s faux bold, and the text is closer together, accounting for the thicker font strokes. The true italic is more notable when comparing the lowercase a character in the word “Italic.” The font changes the style of the a character when italic. Additionally, the slant of the true italic is a lesser degree than the browser’s faux italic.

      Next, there are a few more font variations to load, since the heading elements use thinner weight versions of Fira Sans.

      Return to styles.css in your text editor and create four more @font-face rules above the regular version @font-face rule:

      styles.css

      /* Fira Sans Thin */
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Thin.eot');
        src: url('fonts/fira/eot/FiraSans-Thin.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Thin.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Thin.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Thin.ttf') format('truetype');
        font-weight: 100;
        font-style: normal;
      }
      
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-ThinItalic.eot');
        src: url('fonts/fira/eot/FiraSans-ThinItalic.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-ThinItalic.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-ThinItalic.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-ThinItalic.ttf') format('truetype');
        font-weight: 100;
        font-style: italic;
      }
      
      /* Fira Sans Light */
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-Light.eot');
        src: url('fonts/fira/eot/FiraSans-Light.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-Light.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-Light.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-Light.ttf') format('truetype');
        font-weight: 200;
        font-style: normal;
      }
      
      @font-face {
        font-family: "Fira Sans";
        src: url('fonts/fira/eot/FiraSans-LightItalic.eot');
        src: url('fonts/fira/eot/FiraSans-LightItalic.eot') format('embedded-opentype'),
             url('fonts/fira/woff2/FiraSans-LightItalic.woff2') format('woff2'),
             url('fonts/fira/woff/FiraSans-LightItalic.woff') format('woff'),
             url('fonts/fira/woff2/FiraSans-LightItalic.ttf') format('truetype');
        font-weight: 200;
        font-style: italic;
      }
      ...
      

      These new rules load the Thin and the Light variations of Fira Sans, mapped to the 100 and 200 font-weight values, respectively. Since there are not word values for these sizes, you changed the values for the regular and bold font-weight properties to their numerical values.

      Save these changes to styles.css, then return to your browser and refresh index.html. The heading elements are now using the thinner variants of Fira Sans, as shown in the following image:

      Large purple block with white text in a sans-serif font inside. Below are several paragraphs of sans-serif text in a dark gray with purple thin sans-serif headings.

      In this section, you loaded self-hosted font files with @font-face rules. You learned how faux bold and italic can impact the visual presentation of a font and how to link many font files together with a common font-family value. In the last section, you will use a variable font, which allows for many variations sourced from a single font file.

      Working with Variable Fonts

      Variable fonts are a relatively new addition to the options of web typography. Where in the previous section each font weight and style had to be loaded from an individual file, variable fonts contain information in a single file from which many variations can be calculated. Variable fonts can increase performance, as well as providing much more design possibilities than before. In this section, you will load a variable font using the @font-face rule and tweak the display of the font to find the right variation.

      To begin working with variable font, open styles.css in your text editor. First, remove all the @font-face rules from the previous section and replace them with the following new rule:

      styles.css

      @font-face {
        font-family: Raleway;
        src: url('fonts/raleway/Raleway.woff2') format('woff2');
        font-style: normal;
        font-weight: 300 800;
      }
      
      body {
      ...
      

      A variable font structurally looks the same as a standard @font-face rule. You first declare a font-family name, then supply a list of src values, although often with variable fonts only one format is necessary. The font-style property was set to normal for this font. A difference comes with the font-weight value. Instead of defining a single value, a range is written with the thinnest weight followed by the thickest weight. By defining this range, the browser can prepare for the possible variation calculations that will occur. Here you set the font-face rule for Raleway, with a font-weight range from 300 to 400.

      Next, you will need to establish Raleway in the font stack. Remove "Fira Sans" from the beginning of the font stack and replace it with Raleway. Since the name Raleway does not contain any spaces, it does not need to be in quotes:

      styles.css

      ...
      body {
        margin: 0;
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 10%);
        line-height: 1.5;
        font-family: Raleway, "PT Sans", Calibri, Tahoma, sans-serif;
      }
      ...
      

      Save your changes to styles.css and open index.html in your web browser. The browser produces true font weights instead of faux weights, but is not treating italics correctly due to a lack of defined italic style.

      To set up the italic version of the Raleway variable font, return to styles.css in your text editor. Below the first @font-face rule, create a new rule set:

      styles.css

      @font-face {
        font-family: Raleway;
        src: url('fonts/raleway/Raleway.woff2') format('woff2');
        font-weight: 300 800;
        font-style: normal;
      }
      
      @font-face {
        font-family: Raleway;
        src: url('fonts/raleway/Raleway-Italic.woff2') format('woff2');
        font-weight: 300 800;
        font-style: italic;
      }
      
      body {
        ...
      }
      ...
      

      The src has changed its font file name from Raleway.woff2 to Raleway-Italic.woff2, and the font-style value is now italic.

      Save your changes to styles.css and refresh the page in your browser. The browser is now rendering the italic version of the various weights of Raleway. The following image shows the updated version of the page with a full Raleway variable font set:

      Large purple block with white text in a sans-serif font inside. Below are several paragraphs of sans-serif text in a dark gray with purple thin sans-serif headings.

      The advantage of using variable fonts is that any whole numerical value defined in the font-weight range is available. While standard font weights increment by values of 100, variable fonts weights can increment by values as low as 1. This provides a method to fine-tune the visual design of the font in ways not possible before.

      To use the weight values from the range, return to styles.css in your text editor and make the following changes:

      styles.css

      ...
      h1 {
        font-size: 3rem;
        font-weight: 350;
      }
      
      h2 {
        font-size: 2rem;
        font-weight: 570;
      }
      
      h3 {
        font-size: 1.75rem;
        font-style: italic;
        font-weight: 450;
      }
      
      p {
        font-size: 1.125rem;
      }
      
      strong {
        font-weight: 600;
      }
      

      For the h1 selector, you changed the font-weight value to 350. Then, you set the h2 font-weight property to 570 and the h3 to 450. Lastly, you created a strong element select with a font-weight property set to 650.

      Be sure to save your changes to styles.css, then return to your browser and refresh index.html. The browser now renders various weights of the Raleway font throughout the page. The following image shows how this appears in the browser:

      Large purple block with white text in a sans-serif font inside. Below are several paragraphs of sans-serif text in a dark gray with purple bold sans-serif headings.

      In this final section, you loaded and used a variable font on your web page. Much more variation can come from one or two variable fonts than a dozen standard fonts. You also learned how to adjust a variable font to find the right variation for your design needs to a degree unlike before.

      Conclusion

      Fonts are a key component to the visual aesthetic of a design. They are highly sought after assets that help one website standout from another.

      Throughout this tutorial, you learned the main ways fonts can be used on a website. You used local fonts and a font stack to tell the browser which fonts to try loading. Then, you used a font hosting service to effectively load the font Open Sans from Google Fonts. Next, you set up your own series of @font-face rules and created your own family of self-hosted fonts. Lastly, you built on what you learned loading your own fonts to use variable font and try out the versatility and performance they provide. Remember that it is important to always have fallback fonts in the font stack regardless if the font is local, from a hosting service, or self-hosted, because the font may not load for unknown reasons.

      If you would like to read more CSS tutorials, try out the other tutorials in the How To Style HTML with CSS series.



      Source link

      The Top 22 Web Safe Fonts to Use on Your Website


      Whether you’re a budding professional web designer or a DIY business site builder, you may have come across the term “web safe fonts.” This is an important element for any successful design, but finding and using the best typefaces for the web can be tricky.

      Fortunately, web safe fonts are easier to access and incorporate into your website than you think. They not only ensure consistency across your branding but also provide advantages in terms of User Experience (UX) and Search Engine Optimization (SEO).

      This article will explain what web safe fonts are and why they’re important from a web design perspective. Then we’ll share some popular examples, resources where you can acquire them, and instructions for using them. Feel free to use the links below to jump to the section that most interests you.

      There’s a lot to cover, so let’s get started!

      An Introduction to Web Safe Fonts (And Why They Matter)

      A web safe font is simply a typeface that is viewable on most devices, including desktop and mobile. Typically, they come pre-installed on each Operating System (OS).

      This is important because if a visitor tries to view your website and it uses a font that is not installed on their device, they will see a generic typeface such as Arial or Times New Roman instead. In some cases, your content may even become unreadable on certain devices.

      Of course, the latter situation is undesirable, as users won’t typically stick around if they can’t read your site. However, even having to display a generic font family can disrupt your website’s overall design. It may also lead to inconsistencies in your branding.

      In some cases, using web safe fonts may improve your pages’ loading times. Since they are pre-installed on most popular operating systems, modern browsers don’t have to download them from your server while rendering your site. This can improve both UX and SEO.

      Struggling to Choose a Specific Font?

      Don’t worry; when you partner with DreamHost, you get access to WP Website Builder and more than 200+ industry-specific starter sites for free!

      The Top 22 Web Safe Fonts to Use on Your Website

      Fortunately, there are many different web safe fonts out there that you can choose from when designing your site. Finding one that matches your brand’s tone and personality shouldn’t be too much of a challenge.

      To give you a head start, we’ve rounded up some popular choices for your consideration. Let’s start with the basics and then take a look at a few more unique options.

      1. Arial

      The Arial font.

      Many designers see Arial as simple or boring, but you can’t deny that it’s a tried and true web safe font. This is perfect for use as a fallback for a more unusual (and not always available) typeface. Plus, it’s highly legible.

      2. Times New Roman

      The Times New Roman font.

      If you appreciate the reliability and simplicity of Arial but would prefer a serif font, Times New Roman is the way to go. Although it’s also somewhat lacking in personality, you can rest assured that it will be viewable on any device.

      3. Helvetica

      The Helvetica font.

      Helvetica is a sans serif font that many prefer as an alternative to Arial. It’s purposefully designed to be industrious and lacking in personality, making it useful for documentation or other no-frills content that you want to make sure is readable.

      4. Calibri

      The Calibri font.

      Calibri is another basic sans serif font, similar to Helvetica and Arial. It has been the default font for Microsoft Office for several years now and is an excellent pick for modern businesses and e-commerce sites. By using an unassuming, unintrusive font, you can draw more attention to your products and services.

      5. Georgia

      The Georgia font.

      Classy, serifed Georgia has a timeless look that adds to your website’s tone and style without overwhelming the design. It’s ideal for lifestyle blogs and brands that want a slightly softer, not-too-edgy feel.

      6. Cambria

      The Cambria font.

      Cambria is similar to Georgia, but with a slightly more modern twist. Its serifs are a little more subtle, which can make it easier to read – especially on smaller screens.

      7. Veranda

      The Veranda font.

      Veranda was designed specifically for on-screen use, and as a result, is particularly easy to read on all devices. It has a classic feel and certainly won’t distract from your content. It adapts well to headings or body text, so you can use it for just about any kind of content.

      8. Tahoma

      The Tahoma font.

      Tahoma is another clear and easy-to-read sans serif font. It’s flexible enough to work well for business sites, blogs, creative portfolios, or whatever else you need it for. The characters are clean, uniform, and easy on the eyes.

      9. Trebuchet

      The Trebuchet font.

      Designed for readability and usage in signs, Trebuchet is the perfect font for headings and titles. It also retains its legibility at smaller sizes, so don’t hesitate to use it in your body text as well.

      10. Century Gothic

      The Century Gothic font.

      Sleek, clean, and geometric, Century Gothic makes a bold statement in headings and titles. If Arial and Helvetica are too plain for your tastes, but you still want a sharp sans serif font for your site, this one is worth considering.

      11. Didot

      The Didot font.

      Classic, elegant Didot gives off an intellectual feel that would be well suited to a university site or even some blogs or startups. It features clean, straight lines with minimalist serifs that don’t take away from the text too much.

      12. Bodoni

      The Bodoni font.

      This eye-catching serif typeface is a more interesting alternative to the standard Times New Roman. Edgier than Georgia but not as in-your-face as something like Courier New or Rockwell, Bodoni a great middle-ground if you want your text to have some flair without taking over the design.

      13. Calisto

      The Calisto font.

      Calisto’s soft lines and dainty serifs give it a feminine air perfect for lifestyle blogging or female-run startups. Its tight spacing may not lend itself well to long blocks of text, but it will look stunning in headings and titles.

      14. Candara

      The Candara font.

      Featured in Microsoft’s ClearType Font Collection, Candara is often seen as one of the less modern-looking sans serif fonts. It projects an open, easy-going attitude that could lend a memorable tone to your website and brand.

      15. Optima

      The Optima font.

      It can be hard to inject a lot of personality into a sleek and clean sans serif typeface, but Optima certainly accomplishes this. It’s memorable enough to lend itself well to developing your brand identity but won’t make long passages feel cluttered or intimidating to readers.

      16. Palatino

      The Palatino font.

      An ideal font for digital magazine headlines and other text that needs to make a bold statement, Palatino is a classic serif font. It feels a little less structured than Georgia and has much more personality than your standard Times New Roman.

      17. Quicksand

      The Quicksand font.

      Quicksand is a modern font designed to look good on mobile devices. It’s simple and not too flashy, but still shows enough quirky personality to keep your body text interesting. This fairly streamlined typeface is easy to read as well, making it a solid pick for text-heavy sites.

      18. Courier New

      The Courier New font.

      Courier New is a quirky font that is highly recognizable and packs a lot of personality. It is the perfect choice if you want your site to have a more vintage feel and are looking for a strong font that will convey your brand’s identity.

      19. Rockwell

      The Rockwell font.

      Rockwell’s distinctive serifs are reminiscent of Courier New, only without the overwhelmingly vintage vibe. It may be a little more difficult to read on smaller screens and at smaller sizes, but it can be a fun font for headings and titles.

      20. Garamond

      The Garamond font.

      Garamond is a timeless font originally designed in 1615. Unfortunately, it’s easier to read in print than on the web. However, you can still make use of it as an accent typography font in headings, or perhaps even as a part of your logo.

      21. Copperplate

      The Copperplate font.

      This highly distinctive font is hard to miss and brings an industrial, official feel to your text. Copperplate is the ideal typeface for drawing attention to your headlines or logo. Unfortunately, it could become hard to read when used for smaller body content.

      22. Impact

      The Impact font.

      Aptly named, Impact is a statement font that you may want to reserve for headings and titles. This heavy font packs a punch and grabs readers’ attention as they scroll your blog roll or skim your posts for key information.

      Don’t Sweat the Font Size

      Whether you need help finding a different font, designing a custom site, or downloading a font file, we can help! Subscribe to our monthly digest so you never miss an article.

      Where to Download Web Safe Fonts

      In short, you shouldn’t have to download web safe fonts. Since they’re already pre-installed on all popular operating systems, you can simply code them into your site using CSS, and they should appear as intended across all devices.

      With that being said, if you feel the need to download a web safe font for some reason, you can find them in most of the popular font libraries, such as Google Fonts, DaFont, or FontSpace.

      However, keep in mind that just because a typeface is available via one of these resources doesn’t automatically mean it’s web safe.

      How to Add Web Safe Fonts to Your Website

      You can add fonts to your website with CSS. The best practice is to include your preferred font (which may or may not be web safe) and a fallback font (which should always be web safe). This way, if your primary font choice is not compatible with a user’s operating system, you can still have a say in the backup font that’s shown in its place.

      There are a few different options for adding the CSS to incorporate web safe fonts on your website. If you’re using WordPress, you can put it in the Additional CSS section of the Customizer.

      The Additional CSS section in the WordPress Customizer.

      Alternatively, you can change your website’s font in its stylesheet (style.css). There should be a fonts and typefaces section of this file where you can specify which fonts should be used for different types of text.

      Here’s an example:

      p {font-family:Montserrat,Arial,sans-serif; }

      In this snippet, we’ve set the paragraph text to display the Montserrat font first. If a user’s device doesn’t have Montserrat installed, Arial will be used instead. You can include more than two fonts if you wish and use different fonts for body text, headings, and titles.

      Do You Have a Favorite Web Font?

      If you’re not an experienced designer, it’s easy to overlook the importance of your website’s font. However, this element plays an important role in your branding. Choosing a font that isn’t viewable on all devices can disrupt the UX or even prevent visitors from reading your content entirely.

      In this post, we’ve explained the significance of web safe fonts and how you can add them to your site. We also shared 22 options that you can use in your upcoming designs, including common sans serif fonts such as Helvetica, classic serif fonts like Georgia, and some unique options, including Courier New and Quicksand.

      Are you ready to start designing your new site? With our shared website hosting plans, you can have it up and running in no time. Check them out today!



      Source link

      Variable Fonts on the Web Using CSS


      Font variations is a new set of features defined as part of the OpenType specification. It allows for font files to contain multiple variation of a font within a single file, called a variable font. This in turns allows the use of one font file on the web that can achieve multiple font styles.

      On top of the obvious savings in turns of data that needs to be sent over the wire to display the text on a page, variable fonts enable features such as animating or transitioning font styles and custom font styles, both of which are not possible with static fonts.

      Let’s go over some examples of using a variable font, and then break down how to use them on the web today.

      Variable Font Examples

      Note that you’ll need to use a supporting browser to properly view the examples below.

      Source Sans Variable

      Source Sans is a popular free font that now comes with in a variable version. Hover over the text to see how the value for font-weight can be transitioned:

      See the Pen XWdaGLZ by alligatorio (@alligatorio) on CodePen.

      And this is achieved using some very simple CSS rules:

      @font-face {
        font-family: 'Source Sans';
        src: url('/assets/fonts/variable/SourceSansVariable-Roman.ttf') format("truetype-variations");
        font-weight: 1 999;
      }
      
      .source-sans, .source-sans2, .source-sans3 {
        font-family: 'Source Sans';
        transition: font-weight .45s ease-out;
      }
      
      .source-sans:hover, .source-sans2:hover {
        font-weight: 999;
      }
      .source-sans3:hover {
        font-weight: 200;
      }
      

      Custom font styles

      Here are some examples all using the same font, Decovar, a variable font that defines custom axes and allows for unique and stylized text:

      See the Pen RwaZdXX by alligatorio (@alligatorio) on CodePen.

      And here’s the CSS rules used for that:

      @font-face {
        font-family: Decovar;
        src: url('/assets/fonts/variable/DecovarAlpha-VF.subset.ttf') format("truetype-variations");
      }
      
      .decovar, .decovar2, .decovar3 {
        font-family: Decovar;
      }
      
      .decovar {
        color: var(--green3);
        font-variation-settings: "BLDA" 506.944, "TRMC" 1000, "TRMK" 324.653;
      }
      .decovar2 {
        color: hotpink;
        font-variation-settings: "WMX2" 580.838, "TRMB" 1000;
      }
      .decovar3 {
        color: rebeccapurple;
        font-variation-settings: "TRMF" 159.18, "TRME" 1000;
      }
      

      Now that you’ve seen some real-life examples, let’s go over some of the concepts and how to make use of variable fonts in your own web pages.

      Font Axes

      Variable fonts define their variations though axes of variation. There are 5 standard axes:

      • ital: Controls the italics. The value can be set using the font-style CSS property.
      • opsz: Controls the font’s optical size. The value can be set using the font-optical-sizing CSS property.
      • slnt: Controls the slant of the font. The value can be set using the font-style CSS property.
      • wght: Controls the font’s weight. The value can be set using the font-weight CSS property.
      • wdth: Controls the font’s width. The value can be set using the font-stretch CSS property.

      Fonts can also specify custom axes, and these need to have a 4-letter uppercase name instead of the 4-letter lowercase names of the standard axes. The Decovar font demoed above is a prime example of a font using a multitude of custom axes.

      The standard axes can be set with well-known CSS properties (e.g.: wdth is set with font-weight), and the new CSS font-variation-settings is used to control the values for axes otherwise.

      For example, here we define a style for the NobotoFlex variable font:

      h1 {
        font-variation-settings: "BASE" 500, "SPAC" 200, "wght" 322, "HEIG" 456;
      }
      

      Which could have alternatively been defined like this:

      h1 {
        font-weight: 322
        font-variation-settings: "BASE" 500, "SPAC" 200, "HEIG" 456;
      }
      

      It’s a good idea to use the native CSS properties for the axes that have one.

      Note that fonts don’t have to implement all 5 standard axes, and instead you should consult the documentation of the font to know what axes you can control.

      Note also how font-weight can take values anywhere between 1 and 999, compared to the 100-value increments we’re used to.

      Using Variable Fonts with @font-face

      Using variable fonts on the web involves defining @font-face rules that point to the variable font files. The following is a brief overview of how it’s done, but for there are a few caveats you may want to learn about for cross-browser support.

      Here for example we define two version for the Source Sans font family, one regular and one bold. Both versions make use of the same variable font file, but different font files as a fallback for browsers that don’t support variable fonts:

      @font-face {
        font-family: 'Source Sans';
        src: url('/path/to/SourceSansVariable.woff2') format("woff2-variations");
        src: url('/path/to/SourceSans.woff2') format("woff2");
        font-weight: 400;
      }
      
      @font-face {
        font-family: 'Source Sans';
        src: url('/path/to/SourceSansVariable.woff2') format("woff2-variations");
        src: url('/path/to/SourceSansBold.woff2') format("woff2");
        font-weight: 900;
      }
      

      And it can now be used within your CSS rules as usual:

      h1 {
        font-family: 'Source Sans';
        font-weight: 900;
      }
      
      h2 {
        font-family: 'Source Sans';
        font-weight: 400;
      }
      

      You can also specify a range in your @font-face rules, to retain the ability to use all the possible values within your regular CSS rules:

      @font-face {
        font-family: 'Source Sans';
        src: url('/path/to/SourceSansVariable.woff2') format("woff2-variations");
        src: url('/path/to/SourceSans.woff2') format("woff2");
        font-weight: 1 999;
      }
      

      With the above, we can now use any value between 1 and 999 for the font-weight property. Non-supporting browsers will use a font-weight value of normal.

      Available Fonts

      You can find and play with most of the currently available variable fonts on V-fonts.com. A few notable Open Source ones are Barlow, Mutador Sans, Source Sans, Amstelvar and Cabin VF.

      Some are also available through Google Fonts as early access fonts.

      TTF to WOFF2

      Font files will often be provided in the TrueType format (ttf), but for the web it’s a much better idea to compress the font file to the WOFF2 format, to save on space. You can use a tool like FontTools to compress a font file as WOFF2. More user-friendly GUI or online tools will surely become available really soon.

      Browser Support

      Support for variable fonts is already pretty good, so in theory you can start using them today. There are a few caveats with support however, and some things are still being ironed-out for their usage within CSS as part of the CSS Fonts Module Level 4. Here’s a nice summary what’s still in flux at the moment.

      Here’s some further reading material if you want to expand your understanding of using variable fonts on the web:

      And here are two tools that allow you to easily test out and find variable fonts:



      Source link