css 虽然添加谷歌字体到我的博客在blogger我在标题部分出错

ncgqoxb0  于 2023-02-14  发布在  其他
关注(0)|答案(3)|浏览(103)

请帮助我解决下图中显示的错误。
上面写着:

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>

km0tfn4u

km0tfn4u1#

在XML代码中,需要将与号&转义为&amp;

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

rur96b6h2#

只需将&更改为&amp;
问题会解决的

kiz8lqtg

kiz8lqtg3#

html代码将如下所示:

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

请注意,您可以避免display=swap。我推荐以下方法:

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

相关问题