HTML验证器错误出现在所有头部元标签上,为什么?

huangapple go评论65阅读模式
英文:

HTML validator errors for all head meta-tags, why?

问题

我运行了我的HTML代码通过一个验证器,看到大约80个错误,尽管网站运行得相当好。请看下面的代码:

<!DOCTYPE html> 
<html lang="da-DK">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restauranter i København med havudsigt</title>
</head>
<body>
Hi there
</body>
</html>

验证器指出,其中一些问题包括没有标题,meta元素上不允许使用charset属性,meta元素缺少一个或多个以下属性等等。

但是我在head部分有一个标题,而且标题不是body的一部分。
有人知道为什么会发生这种情况吗?

编辑:谢谢。以后参考,通过一个快速的英语拼写检查运行HTML是一个好主意,以便“捕捉”这种错误。我以为英语单词“title”的拼写是像丹麦语中的“titel”一样的。

英文:

I ran my HTML trough a validator and was horrorfied to see around 80 errors despite the site working quite fine. Please see the code below:

&lt;!DOCTYPE html&gt; 
&lt;html lang=&quot;da-DK&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
&lt;titel&gt;Restauranter i K&#248;benhavn med havudsigt&lt;/titel&gt;
&lt;/head&gt;
&lt;body&gt;
Hi there
&lt;/body&gt;
&lt;/html&gt;

To this, the validator says, among other things, that there is no titel no, attribute charset not allowed on element meta, element meta is missing one or more of the following attributes and so forth.

But I a titel in the head part, and the titel is not part of the body.
Does anyone know why on earth this is happening?

Edit: Thank you. For future reference, it is a good idea to run HTML trough a quick english-spellcheck to "catch" mistakes such as this. I believed the english word "title" was spelled "titel" like it is in Danish.

答案1

得分: 1

&lt;titel&gt;Restauranter i K&#248;benhavn med havudsigt&lt;/titel&gt; 中的 "titel" 应为 "title"。

英文:

Here is your problem:

&lt;titel&gt;Restauranter i K&#248;benhavn med havudsigt&lt;/titel&gt;

titel instead of title

huangapple
  • 本文由 发表于 2020年1月7日 02:43:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/59617332.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定