HTML标题评论

时间:2018-05-17 10:32:17

标签: html

好的,所以我做了一个非常简单的程序,我发现评论中有一个错误。



<!DOCTYPE html>
<html>
<!-- This starts the html file -->

<head>
  <!-- This is the head  -->

  <title>
    <!-- This states the title for the webpage -->
    Website's title
  </title>

</head>

</html>
&#13;
&#13;
&#13;

不是将标题显示为网站标题,而是显示评论。

3 个答案:

答案 0 :(得分:3)

这不是错误。

请参阅the HTML specification

<title>的内容模型是文字

<符号(除非后面跟着title元素的其余部分)不会被解释为具有任何特殊含义。

答案 1 :(得分:1)

你不应该使用这样的评论:放在/侧面:

<!-- website title -->
<title>This is my title</title>

这是正确的方法:)

答案 2 :(得分:0)

您将评论<!-- This states the title for the webpage -->放在<title></title>标记之间,因此评论被视为标题的一部分。

您应该删除该评论或将其放在<title>标记之前。