Load fonts asynchronously
masterTo avoid blocking page rendering, you can load the Web Font Loader script asynchronously. When using this method, you must define the global WebFontConfig object before the script is loaded.
Note: Asynchronous loading may cause a Flash of Unstyled Text (FOUT) because the page might render before the fonts are ready.
<script>
WebFontConfig = {
typekit: { id: 'xxxxxx' }
};
(function(d) {
var wf = d.createElement('script'), s = d.scripts[0];
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
wf.async = true;
s.parentNode.insertBefore(wf, s);
})(document);
</script>