一:
1. 定义: <head> 是所有头部元素的容器。
2. 作用: (1) 可添加脚本, css。
(2)可添加<title>, <base>, <link>, <meta>, <script>, <style>。
二: 各个元素
1. <title>
(1) 提供浏览器工具栏中的标题。
(2)提供被添加到收藏夹栏的标题。
(3)显示在搜索引擎中的页面标题。
2.<base>
为页面上所有链接规定的默认地址或默认目标。
注意, 为空标签, 注意关闭。
<head>
<base href = "www.w3school.com.cn/html/images" />
<base target = "_blank" />
</head>
3. <link>
定义文档和外部资源的关系, 最常用于连接样式表。
为空标签, 注意关闭。
<head>
<link rel = "stylesheet" type = "text/css" href = "mystyle.css" />
</head>
4. <style>
<style> 定义文档的样式信息。
<head>
<style type = "text/css">
body {background-color:yellow}
p {color: blue}
</style>
</head>
5. <meta>
空标签, 注意关闭。
一些搜索引擎会利用meta元素的name和content属性值来索引页面。
6. <script>
<script>用于定义客户端脚本。