Skip to content

Instantly share code, notes, and snippets.

@larodiel
Last active March 26, 2020 14:53
Show Gist options
  • Save larodiel/348d0bf4a9bd95ee28cf19700cd2b607 to your computer and use it in GitHub Desktop.
Save larodiel/348d0bf4a9bd95ee28cf19700cd2b607 to your computer and use it in GitHub Desktop.
Load google fonts async to improve site performance
<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