HTML头部标记放在<head></head>中,一般包括标题、基底信息、元信息等。
<base> 当前文档的URL全称(基底网址)
<basefont> 设定基准的文字字体、字号和颜色
<title> 显示在浏览器左上方的标题内容(标签卡上)
<isindex> 表明该文档是一个可用于检索的网关脚本,由服务器自动建立
<meta> 有关文档本身的元信息,如用于查询的关键字、获取该文档的有效期等
<style> 设定CSS层叠样式表的内容
<link> 设定外部文件的链接
<script> 设定页面中程序脚本的内容
meta元素的属性有两种,name和http-equiv,其中name属性主要用于描述网页,以便于搜索引擎查找和分类
<meta name="keyword" content="">
<meta name="description" content="">
<meta name="generator" content=""> //设置编辑软件的名称
<meta name="author" content="">
<meta name="robots" content=""> //限制搜索方式
搜索方式: All(可搜索当前网页及其链接的网页)、Index(表示能搜索当前网页)、Nofollow(表示不能搜索当前网页链接的网页)、Noindex(表示不能搜索当前网页)、None(表示不能搜索当前网页及其链接的网页)
设置网页文字和语言的两种方法:
<meta http-equiv="Content-Type" content="text/html;charset=字符集类型"> <meta http-equiv="Content-Language" content="语言">
在该语法中,http-equiv用于传送HTTP通信协议的标头,两种方式的content不一样,第一种charset=utf,而第二种方式的语言是zh_CN形式。
<meta http-equiv="refresh" content="跳转时间;url=链接地址"> //跳转时间的单位是秒
<meta http-equiv="expires" content="到期时间"> //到期时间必须是GMT格式的:星期 日 月 年 时 分 秒,而且必须是英文和数字
禁止从缓存中调用(两种方法):
<meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="set-cookie" content="到期时间"> //删除过期cookie 时间格式同样是GMT
<meta http-equiv="windows-target" content="_top"> //强制打开新窗口