--- title: '@font-face' slug: Web/CSS/@font-face tags: - '@font-face' - At-rule - CSS - CSS Fonts - Fonts - NeedsTranslation - Reference - TopicStub - typography translation_of: Web/CSS/@font-face ---
{{CSSRef}}

The @font-face CSS at-rule specifies a custom font with which to display text; the font can be loaded from either a remote server or a locally-installed font on the user's own computer. If the local() function is provided, specifying a font name to look for on the user's computer, and the {{Glossary("user agent")}} finds a match, that local font is used. Otherwise, the font resource specified using the url() function is downloaded and used.

By allowing authors to provide their own fonts, @font-face makes it possible to design content without being limited to the so-called "web-safe" fonts (that is, the fonts which are so common that they're considered to be universally available). The ability to specify the name of a locally-installed font to look for and use makes it possible to customize the font beyond the basics while making it possible to do so without relying on an Internet connection.

It's common to use both url() and local() together, so that the user's installed copy of the font is used if available, falling back to downloading a copy of the font if it's not found on the user's device.

The @font-face at-rule may be used not only at the top level of a CSS, but also inside any CSS conditional-group at-rule.

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"),
       url("/fonts/OpenSans-Regular-webfont.woff") format("woff");
}

Syntax

Descriptors

{{cssxref("@font-face/font-display", "font-display")}}
Determines how a font face is displayed based on whether and when it is downloaded and ready to use.
{{cssxref("@font-face/font-family", "font-family")}}
Specifies a name that will be used as the font face value for font properties.
{{cssxref("@font-face/font-stretch", "font-stretch")}}
A {{cssxref("font-stretch")}} value. Since Firefox 61 (and in other modern browsers) this also accepts two values to specify a range that is supported by a font-face, for example font-stretch: 50% 200%;
{{cssxref("@font-face/font-style", "font-style")}}
A {{cssxref("font-style")}} value. Since Firefox 61 (and in other modern browsers) this also accepts two values to specify a range that is supported by a font-face, for example font-style: oblique 20deg 50deg;
{{cssxref("@font-face/font-weight", "font-weight")}}
A {{cssxref("font-weight")}} value. Since Firefox 61 (and in other modern browsers) this also accepts two values to specify a range that is supported by a font-face, for example font-weight: 100 400;
{{cssxref("@font-face/font-variant", "font-variant")}}
A {{cssxref("font-variant")}} value.
{{cssxref("font-feature-settings", "font-feature-settings")}}
Allows control over advanced typographic features in OpenType fonts.
{{cssxref("@font-face/font-variation-settings", "font-variation-settings")}}
Allows low-level control over OpenType or TrueType font variations, by specifying the four letter axis names of the features to vary, along with their variation values.
{{cssxref("@font-face/src", "src")}}

Specifies the resource containing the font data. This can be a URL to a remote font file location or the name of a font on the user's computer.

To provide the browser with a hint as to what format a font resource is — so it can select a suitable one — it is possible to include a format type inside a format() function:

src: url(ideal-sans-serif.woff) format("woff"),
     url(basic-sans-serif.ttf) format("truetype");

The available types are: "woff", "woff2", "truetype", "opentype", "embedded-opentype", and "svg".

{{cssxref("@font-face/unicode-range", "unicode-range")}}
The range of Unicode code points to be used from the font.

Formal syntax

{{csssyntax}}

Examples

This example simply specifies a downloadable font to use, applying it to the entire body of the document:

View the live example

<html>
<head>
  <title>Web Font Sample</title>
  <style type="text/css" media="screen, print">
    @font-face {
      font-family: "Bitstream Vera Serif Bold";
      src: url("https://mdn.mozillademos.org/files/2468/VeraSeBd.ttf");
    }

    body { font-family: "Bitstream Vera Serif Bold", serif }
  </style>
</head>
<body>
  This is Bitstream Vera Serif Bold.
</body>
</html>

In this example, the user's local copy of "Helvetica Neue Bold" is used; if the user does not have that font installed (two different names are tried), then the downloadable font named "MgOpenModernaBold.ttf" is used instead:

@font-face {
  font-family: MyHelvetica;
  src: local("Helvetica Neue Bold"),
       local("HelveticaNeue-Bold"),
       url(MgOpenModernaBold.ttf);
  font-weight: bold;
}

Font MIME Types

Format MIME type
TrueType font/ttf
OpenType font/otf
Web Open Font Format font/woff
Web Open Font Format 2 font/woff2

Notes

Specifications

Specification Status Comment
{{SpecName('WOFF2.0', '', 'WOFF2 font format')}} {{Spec2('WOFF2.0')}} Font format specification with new compression algorithm
{{SpecName('WOFF1.0', '', 'WOFF font format')}} {{Spec2('WOFF1.0')}} Font format specification
{{SpecName('CSS3 Fonts', '#font-face-rule', '@font-face')}} {{Spec2('CSS3 Fonts')}} Initial definition

Browser compatibility

{{Compat("css.at-rules.font-face")}}

See also