Created
October 5, 2024 21:04
-
-
Save utilmind/bb8b20376b7b7b99f7afb031d2676945 to your computer and use it in GitHub Desktop.
3 attempts of loading the Google WebFont
This file contains 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> | |
function loadWebFont(isLoaded) { | |
if (isLoaded = 'undefined' !== typeof WebFont) { | |
WebFont.load({ google: { families: ["Lato:100,100italic,300,300italic,400,400italic,700,700italic,900,900italic","Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic","Oswald:200,300,400,500,600,700","Great Vibes:400","Poppins:100,200,300,regular,500,600,700,800,900"] }}); | |
} | |
return isLoaded; | |
} | |
if (!loadWebFont()) { // if WebFont not available yet... | |
// wait until HTML is fully loaded | |
document.addEventListener("DOMContentLoaded", function() { // defer | |
if (!loadWebFont()) { // if still not available... | |
// wait until all external resources, styles and fonts loaded | |
window.addEventListener("load", loadWebFont); | |
} | |
}); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment