好的,所以我做了一个非常简单的程序,我发现评论中有一个错误。
<!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;
不是将标题显示为网站标题,而是显示评论。
答案 0 :(得分:3)
答案 1 :(得分:1)
你不应该使用这样的评论:放在/侧面:
<!-- website title -->
<title>This is my title</title>
这是正确的方法:)
答案 2 :(得分:0)
您将评论<!-- This states the title for the webpage -->
放在<title>
和</title>
标记之间,因此评论被视为标题的一部分。
您应该删除该评论或将其放在<title>
标记之前。