我正在尝试使用 Yellow Lab Tools 和 GTmetrix 等不同类型的工具优化我的网站,当我检查首页中加载了哪些网络字体时,我发现这两个我不认识的网络字体链接。
https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxM.woff (19.4 KB) https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc-.woff (19.5 KB)
我不知道这些是做什么用的以及它们在哪里使用。有没有办法停止加载这两种网络字体?
我检查了我的 css 文件和 js 文件以及所有内容,但我似乎找不到解决方案。
这是我网站的首页。
我在我的网站中使用了唯一的字体。
@font-face {
font-family: "Noto Sans JP";
font-style:normal;
font-weight:400;
font-display:swap;
src:
url('/fonts/NotoSans_Regular.woff2') format('woff2'),
url('/fonts/NotoSans_regular.woff') format('woff'),
url('/fonts/NotoSans_regular.ttf') format('truetype');
}
@font-face {
font-family: "Noto Sans JP";
font-style:normal;
font-weight:700;
font-display:swap;
src:
url('/fonts/NotoSans_Bold.woff2') format('woff2'),
url('/fonts/NotoSans_bold.woff') format('woff'),
url('/fonts/NotoSans_bold.ttf') format('truetype');
}
@font-face {
font-family: "Lato";
font-style:normal;
font-weight:400;
font-display:swap;
src:
url('/fonts/lato-v15-latin-regular.woff2') format('woff2'),
url('/fonts/lato-v15-latin-regular.woff') format('woff'),
url('/fonts/lato-v15-latin-regular.ttf') format('truetype');
}
@font-face {
font-family: "Lato";
font-style:normal;
font-weight:700;
font-display:swap;
src:
url('/fonts/lato-v15-latin-700.woff2') format('woff2'),
url('/fonts/lato-v15-latin-700.woff') format('woff'),
url('/fonts/lato-v15-latin-700.ttf') format('truetype');
}
任何建议将不胜感激。谢谢你。