I use typekit on my website to download fonts, and typekit gives me 2 links.
<script src="https://use.typekit.net/xxxx.js"></script> <script>try { Typekit.load({ async: false }); } catch (e) { }</script>
I put these links in the main tag, but when I enter my website, fonts load after the content. I wonder how it can load until the page is ready or before the content is loaded.
PS: I tried async: true and false .. Both of them gave the same result.
source share