预加载 Google 字体是为了提高网页加载速度和用户体验。下面是正确预加载 Google 字体的步骤:
<head>
标签中添加以下代码:<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Font1&family=Font2&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Font1&family=Font2&display=swap" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Font1&family=Font2&display=swap">
</noscript>
其中,Font1
和 Font2
是你要预加载的 Google 字体名称,可以根据实际需要进行替换。这段代码使用了 <link>
标签的预加载和异步加载特性,以提高字体加载效率。
body {
font-family: 'Font1', sans-serif;
}
这里的 'Font1'
是你要使用的 Google 字体名称。
请注意,以上答案仅供参考,具体实施方式可能因实际情况而有所不同。
领取专属 10元无门槛券
手把手带您无忧上云