Html网页页面head区规范知识
head区是指首页HTML代码的<head>和</head>之间的内容。
必须加入的标签
1.公司版权注释
2.网页显示字符集
简体中文:<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
繁体中文:<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=BIG5">
英 语:<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
3.网页制作者信息
<META name="author" content="Evance">
4.网站简介
<META NAME="DESCRIPTION" CONTENT="xxxxxxxxxxxxxxxxxxxxxxxxxx">
5.搜索关键字
<META NAME="keywords" CONTENT="xxxx,xxxx,xxx,xxxxx,xxxx,">
6.网页的css规范
<LINK href="style/style.css" rel="stylesheet" type="text/css">
7.网页标题
<title>xxxxxxxxxxxxxxxxxx</title>
可以选择加入的标签
1.设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。
<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 2006 08:21:57 GMT">
2.禁止浏览器从本地机的缓存中调阅页面内容。
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
3.用来防止别人在框架里调用你的页面。
<META HTTP-EQUIV="Window-target" CONTENT="_top">
4.自动跳转。
<META HTTP-EQUIV="Refresh" CONTENT="5;URL=http://www.webjx.com">,5是指时间停留5秒。
5.网页搜索机器人向导.用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。
<META NAME="robots" CONTENT="none">
CONTENT的参数有all,none,index,noindex,follow,nofollow。默认是all。
6.收藏夹图标
<link rel = "Shortcut Icon" href="favicon.ico">
所有的javascript的调用尽量采取外部调用.
<SCRIPT LANGUAGE="javascript" SRC="script/xxxxx.js"></SCRIPT>
---------------------------------------------------------------------------------------------------------
还有一些标贴:
<html>
<head>
<title>义乌网址导航,义乌网站分类目录,义乌企业大全 Power By 173158.com - 网站首页</title>
<meta name="verify-v1" content="ta7tJ4rpoXCgvhKsOT1voCkybGQ6LqSPHQuWLiP5uBU=" />
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="keywords" content="义乌休闲娱乐,义乌网站导航,义乌网站目录,义乌行业分类,人工目录,义乌网址大全,义乌站目录,义乌网址导航,义乌酷站目录,义乌酷站导航" />
<meta name="description" content="义乌影视娱乐,义乌求职招聘,义乌买卖租转,义乌批发团购 ,义乌交友征婚,义乌货运快递,义乌网址黄页 ,义乌企业黄页,义乌企业库,义乌分类信息" />
<meta http-equiv="Content-Language" content="zh-cn" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="distribution" content="global" />
<meta name="Robots" content="index,follow" />
<meta content="Copyright 2007 173158.com" name="copyright" />
<link href="css/dir.css" type="text/css" rel="stylesheet" />
<script language="javascript" type="text/javascript" src="/js/dir.js"></script>
</head>