1

我正在尝试使用 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 文件以及所有内容,但我似乎找不到解决方案。

这是我网站的首页。

http://run-journey.com/

我在我的网站中使用了唯一的字体。


@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');
}

任何建议将不胜感激。谢谢你。

4

1 回答 1

0

我检查了。你的字体是拉托语!你的字体没有问题。我在你的网站上找不到这两个链接。

于 2019-08-28T18:23:52.827 回答