我的HTML开头是:
<html>
<head>
<script type="text/javascript" language="JavaScript1.3" src="js/euDock.2.0.js"></script>
<script type="text/javascript" language="JavaScript1.3" src="js/euDock.Image.js"></script>
</head>
...
Run Code Online (Sandbox Code Playgroud)
Netbeans在线说<head>:
The tag content is unresolved, expecting one of <ISINDEX>, <BASE>,
<TITLE>, <OBJECT>, <SCRIPT>, <META>, <LINK>, <STYLE>.
Run Code Online (Sandbox Code Playgroud)
为什么?
http://w3schools.com/html/html_head.asp
HTML标题元素
标签定义文档的标题.
所有HTML/XHTML文档都需要title元素.
标题元素:
- 在浏览器工具栏中定义标题
- 在将页面添加到收藏夹时为页面提供标题
- 在搜索引擎结果中显示页面的标题
例如:
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
</html>
Run Code Online (Sandbox Code Playgroud)