Skip to content

zachleat/web-font-loading-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web-font-loading-recipes

A bunch of demos for different web font loading strategies. Some of these are included on A Comprehensive Guide to Font Loading Strategies, some of them are more experimental.

Demos are hosted at https://www.zachleat.com/web-fonts/demos/

Recommended Methods

As web fonts are a progressive enhancement and with increasing support for the CSS Font Loading API, we can look forward to a time in which we won’t need to inline a polyfill into the header (for even faster font loading). The simplified CSS Font Loading API recipes are the defaults, but polyfilled versions are included for broader browser support—notably only the polyfilled versions will show web fonts in Internet Explorer and Edge web browsers (which do not have support for the CSS Font Loading API).

font-display: swap

preload

font-display: swap with preload

FOUT with a Class

FOUT

Similar to the above, but without using a class—using only the CSS Font Loading API. This doesn’t require any modification of the CSS, injects the web fonts using JS programmatically. I first saw this method in the Webfont Handbook from @bramstein.

  • Code
  • Demo (4 web fonts)
  • Related: .style.fontFamily method (only works well with one family per page), first saw this in a tweet from @simevidas

FOFT

FOFT using only font-display (mix font-display values)

  • Code
  • Demo (4 web fonts—1 swap / 3 optional)
  • ⚠️ This method does not currently have cross-browser support. I’m hoping this will change—learn more.

Critical FOFT

Critical FOFT with Data URI

Critical FOFT with preload

The eBay Method

  • Code: HTML and Lazy-loaded JavaScript
  • Emulate font-display: optional with JavaScript.
    • Notable that it lazy loads the font loading polyfill only if CSS Font Loading API is not supported
  • Read more at eBay’s Font Loading Strategy.
  • Demo (4 web fonts) (polyfill is lazy loaded when CSS Font Loading API is not supported)

“The Compromise”: Critical FOFT with preload, with a polyfill fallback emulating font-display: optional

Experiments in Progress

You’ll probably see blog posts on these at some point.

Not Recommended but included for Posterity

  • font-display: optional
    • A little harsh to put this in the Not Recommended section but I like my web fonts on an empty-cache visit 😎
    • Code
    • Demo** (4 web fonts)
  • System fonts
  • Unceremonious Web Fonts
  • Unceremonious Faux Web Fonts
  • Unceremonious Web Fonts, WOFF2 Only (Cutting the Mustard)
    • Code
    • Old browsers used to render FOIT without a timeout, which in practice made web fonts a single point of failure. Using WOFF2 only cuts the mustard to modern browsers that have a three second FOIT timeout for web fonts. Three seconds is still way too long for me to implement this in production, but it’s worth noting.
    • Demo** (4 web fonts)

Anti-patterns and Deprecated Methods

Failed Experiments

🚫 Asynchronous CSS

This is a common thing people try—they asynchronously load the CSS (and only the CSS). Heck, I used this behavior before I started studying web font loading.

🚫 @supports and font-display

  • Reasons for trying:
    • might be nice to only use web fonts if you can FOUT with font-display
    • might be nice to have FOUT with a class if font-display not supported (and work well without JS dependencies)
  • Failed: @supports doesn’t work with font-face descriptors.
  • Code
  • Demo

** Take note that these methods will FOUT in Internet Explorer and Edge by taking advantage of their default font loading behavior.