I want to use the Google font "Noto Serif" for my site. My problem is that when I test it with Google PageSpeed Insights, it tells me that I am perfect, except for one thing:
<link href="https://fonts.googleapis.com/css?family=Noto+Serif" rel="stylesheet">
Your page has 1 CSS resource lock. This causes a delay in the rendering of your page. None of the above content on your page can be rendered without waiting for the following resources to load. Try deferring or loading blocking resources asynchronously or inserting critical parts of these resources directly into HTML.
I know a bad solution for this. To link the font using <script>
at the bottom of the HTML file. The problem with this solution is that every time you click on something on your website, you invoke Flash text with opaque text.
I am using jekyll hosted on GitHub pages, so I don't think I can install the Font Face Observer :(
source share