为什么我们在HTML页面中使用head标签?

<head>标记是HTML页面中所有head元素的容器。要添加<head>…</ head>标签非常简单。在其下添加文档标题或元信息,样式,脚本等。

请记住,<title>…</ title>标签会添加到<head>…</ head>标签内。

示例

您可以尝试运行以下代码以在HTML页面中添加<head>标记,

<!DOCTYPE html>
<html>
   <head>
      <title>HTML head tag</title>
   </head>
   <body>
      <h2>Working with HTML head tag</h2>
      <p>This is demo text.</p>
      <p>Displaying how head tag is used in HTML. Add title in it or meta information about the document.</p>
   </body>
</html>