英文:
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:
<!DOCTYPE html>
<html lang="da-DK">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<titel>Restauranter i København med havudsigt</titel>
</head>
<body>
Hi there
</body>
</html>
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
<titel>Restauranter i København med havudsigt</titel>
中的 "titel" 应为 "title"。
英文:
Here is your problem:
<titel>Restauranter i København med havudsigt</titel>
titel instead of title
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论