Last active
March 26, 2020 14:53
-
-
Save larodiel/348d0bf4a9bd95ee28cf19700cd2b607 to your computer and use it in GitHub Desktop.
Load google fonts async to improve site performance
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
<script src="//ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script> | |
<script> | |
WebFont.load({ | |
google: { | |
families: [ | |
'Montserrat:400,700', | |
'Raleway:100,200,300,400,500,600', | |
'Lato:400,100,100italic,300,300italic,400italic,700,700italic,900,900italic' | |
] | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment