head
<head>用来标记HTML的头部,里面通常需要包括标题,基础信息,源信息等,定义在HTML头部的内容往往不会在网页上直接显示
title
<title>的内容设置在和之间,用来说明页面的用途,会显示在标签上,一个页面只有一个title
meta
<meta>的内容也设置在和之间,一般用来定义页面信息的说明,关键字,刷新等,不需要设置结束标记,一个<>里就是一个meta的内容,一个HTML文件可以有多个<meta>,<meta>元素的属性有name和http-equiv
name可以设置的属性和内容有:<meta name="keywords" content="关键字">
<meta name="description" content="设置页面说明">
<meta name="generator" content="编辑软件的名称">
<meta name="author" content="作者姓名">
http-equiv可以设置的属性和内容有:<meta http-equiv="content-type" content="text/html; charset=字符集类型">
<meta http-equiv="crefresh" content="20; url=index1.html">
<!--这是注释的格式,定时刷新页面--><meta name="generator" content="编辑软件的名称">
栗子
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="keywords" content="关键字">
<meta name="description" content="设置页面说明">
<title>
标题
</title>
</head>
<body>
</body>
</html>
输出结果, 注意"标题"所处的位置