Skip to content

Instantly share code, notes, and snippets.

@rowe-morehouse
Last active April 25, 2021 20:29
Show Gist options
  • Save rowe-morehouse/3c04e8550e8af9038df6b9dc2d6940e3 to your computer and use it in GitHub Desktop.
Save rowe-morehouse/3c04e8550e8af9038df6b9dc2d6940e3 to your computer and use it in GitHub Desktop.
Snippet for the fastest way to load google fonts.
<head>
<meta charset="utf-8">
<link rel="preconnect"
href="//fonts.googleapis.com"
crossorigin />
<link rel="preload"
as="style"
type="text/css"
href="//fonts.googleapis.com/css?family=Lato:900,300&display=swap" />
<link rel="stylesheet"
type="text/css"
href="//fonts.googleapis.com/css?family=Lato:900,300&display=swap"
media="print" onload="this.media='all'" />
<noscript>
<link rel="stylesheet"
type="text/css"
href="//fonts.googleapis.com/css?family=Lato:900,300&display=swap" />
</noscript>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment