Meta 标记的语法可分为两大类:
<meta name="name" content="content">
<meta http-equiv="" content="content">
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="name" content="content">
<meta http-equiv="" content="content">
<title>meta中继标记</title>
</head>
<body>
</body>
</html>
http-equiv属性:
1.content-type 是设置网页文件的格式,
<meta http-equiv="content-type" content="text/html; charset=zh-cn">
2.refresh 是让网页重新整理
<meta http-equiv="refresh" content="10; url=http://www.baidu.com">
10秒后转到百度
3.expires 是设置网页到期时间
4.pragma 是设置cache 的模式
5.set-cookie 是设置cookie到期的时间
6.windows-target 是限制网页显示目标窗口
<meta http-equiv="windows-target" content="_top">
name属性:
1.keywords是用来设置网页的关键词
2.Description是用业说明网页的主要内容
3.Autor 是用来说明网页的作者
4.Creation-date 是用来标注网页的制作时间