Last active
April 25, 2021 20:29
-
-
Save rowe-morehouse/3c04e8550e8af9038df6b9dc2d6940e3 to your computer and use it in GitHub Desktop.
Snippet for the fastest way to load google fonts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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