下载托管在googleapis.com
域上的 Google 样式表:
https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap
将文件直接保存到您的主题目录中,因此现在是:
https://www.example.com/themes/fonts.css
打开此fonts.css
文件时,内容如下所示:
/* latin-ext */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
...
url
从主题中新创建的文件夹中保存字体fonts
并替换路径,fonts.css
使其为:
src: url(https://www.example.com/themes/fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
注意:就我而言,有 60 多种字体可供下载 :-)
最后一步是添加fonts.css
到您的 HTML:
<link rel="stylesheet" id="local-fonts-css" href="https://www.example.com/themes/fonts.css?ver=1.0" type="text/css" media="all">
这是基本的。此博客文章中的更多详细信息。