<html>
<!-- head标签中主要配置浏览器的配置信息 -->
<head>
<!-- 网页标题标签, 用来指定网页的标题 -->
<title>HTML标题</title>
<!-- 网页解析编码格式(HTML5) -->
<meta charset="utf-8" />
<!-- 网页解析编码格式(HTML4) -->
<!-- <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> -->
<!-- 网页自动跳转, 3秒后自动跳转到url指向的地址 -->
<meta http-equiv="refresh" content="3;url=http://www.xxx.com" />
<!-- 网页关键字 -->
<meta name="keywords" content="HTML,CSS,JS" />
<!-- 网页描述 -->
<meta name="description" content="这里是关于head标签中相关标签的小练习" />
<!-- 网页作者 -->
<meta name="author" content="Eleven" />
</head>
<body></body>
</html>