在 blogger 中向我的博客添加 google 字体时,我在 Header 部分出现错误

While adding google font to my blog in blogger I got error in Header Section

请帮我解决下图中显示的错误。

它说:

Error parsing XML, line 5, column 71: The reference to entity "display" must end with the ';' delimiter
<strike>
<head>
    <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet"/>
</strike>

您需要在 XML 代码中将 & 符号 & 转义为 &amp;

<link href="https://fonts.googleapis.com/css?family=Roboto&amp;display=swap" rel="stylesheet"/>

只需将 & 更改为 &amp;
问题就解决了

html 代码将是这样的:

<link href="https://fonts.googleapis.com/css?family=Roboto&amp;display=swap" rel="stylesheet"/>

请注意,您可以避免显示=交换。我会推荐这个:

<link as='style' href='https://fonts.googleapis.com/css?family=Roboto' media='all' onload='this.onload=null;this.rel=&apos;stylesheet&apos;' rel='preload'/>