HTML头部标签书写规范及含义终极总结
HTML网页头部对网站来说起着相当重要的作用,因此很有必要了解一下网页头部的规范写法及各标签的含义。
下面是个算是比较完整的网页头部代码:
<html xmlns="http://www.w3.org/1999/xhtml
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <!--设置网页的文件编码-->
<meta http-equiv="expires" content="2009/02/13 10:00:00"> <!--脱机浏览的过期时间-->
<meta http-equiv="pragma" content="no-cache"> <!--禁止网页从缓存中读取-->
<meta http-equiv="Refresh" http://www.haibor8.cn/" target=_blank rel=external>http://www.haibor8.cn"> <!--网页重新定向-->
<meta http-equiv="set-cookie" content="2009/02/13 10:00:00"> <!--设置网页的cookie过期时间-->
<meta http-equiv="Window-target" content="_top"> <!--设置网页中链接的目标窗口-->
<meta http-equiv="Page-Enter" content="blendTrans(Duration=0.4)"> <!--设置网页的打开效果-->
<meta http-equiv="Page-Exit" content="blendTrans(Duration=0.4)"> <!--设置网页的关闭效果-->
<meta name="keywords" content="htm,haibor8,seo,海波吧,web,css,div"> <!--设置网页的关键字,搜索的时候优先!!!重要!!! 该数据被搜索引擎编入索引-->
<meta name="description" content=" By haibor8.cn @ 2009-2-13 10:00:00"> <!--插入描述 搜索时被搜索引擎编入索引-->
<meta name="author" content="haibor(From)haibor8.cn" /> <!--作者-->
<meta name="Copyright" content="www.haibor8.cn,自由版权,任意转载" /> <!--版权-->
<meta name="robots" content="all" />
<title>HTML头部标签书写规范及含义终极总结——海波吧SEO——haibor8.cn</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> <!--网站图标显示在地址栏还有收藏夹-->
<link rel="shortcut icon" href="http://www.haibor8.cn/favicon.ico
<link rel="stylesheet" rev="stylesheet" href="css/style01.css" type="text/css" media="all" /> <!--链接CSS样式表-->
<script language="javascript" type="text/javascript" src="http://haibor8.cn/js.js
</head>
<body> 海波吧,www.haibor8.cn</body>
</html>