请注意页面head区域的编码是不是规范_XHTML教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
我们这里所说的head区域,是指页页html代码的<head>和</head>之间的内容。在Mb5u.com的文章中,主要介绍了大量的css知识,而对html页面的知识介绍并不是很多。
今天我们简单的介绍一下head区域主要放置了内容。这里就不强调css和javascript了,这两者是大家所熟知的。
head区一般必须加入的标识有:
公司版权注释
<!--- the site is designed by MrJin 03/2001 --->
网页显示字符集
简体中文:
<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">
或者:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
原始制作者信息
<meta name="author" content="Mb5u@Mb5u.com">
网站简介
<meta name="description" content="这里填您网站的简介">
搜索关键字
<meta name="keywords" content="关键字1,关键字2,关键字3,...">
网页的css规范
<link href="style/style.css" rel="stylesheet" type="text/css">
网页标题
<title>这里是你的网页标题</title>
head区可选加入的标识有:
设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。
<meta http-equiv="expires" content="wed, 26 feb 1997 08:21:57 gmt">
禁止浏览器从本地机的缓存中调阅页面内容。
<meta http-equiv="pragma" content="no-cache">
用来防止别人在框架里调用你的页面。
<meta http-equiv="window-target" content="_top">
自动跳转(5指时间停留5秒)。
<meta http-equiv="refresh" content="5;url=www.Mb5u.com">
网页搜索机器人向导.用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。
<meta name="robots" content="none">
content的参数有all,none,index,noindex,follow,nofollow。默认是all。
收藏夹图标
<link rel = "shortcut icon" href="favicon.ico">
如果您还有什么知识需要补充,欢迎在Mb5u.com发表评论。
今天我们简单的介绍一下head区域主要放置了内容。这里就不强调css和javascript了,这两者是大家所熟知的。
head区一般必须加入的标识有:
公司版权注释
<!--- the site is designed by MrJin 03/2001 --->
网页显示字符集
简体中文:
<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">
或者:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
原始制作者信息
<meta name="author" content="Mb5u@Mb5u.com">
网站简介
<meta name="description" content="这里填您网站的简介">
搜索关键字
<meta name="keywords" content="关键字1,关键字2,关键字3,...">
网页的css规范
<link href="style/style.css" rel="stylesheet" type="text/css">
网页标题
<title>这里是你的网页标题</title>
head区可选加入的标识有:
设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。
<meta http-equiv="expires" content="wed, 26 feb 1997 08:21:57 gmt">
禁止浏览器从本地机的缓存中调阅页面内容。
<meta http-equiv="pragma" content="no-cache">
用来防止别人在框架里调用你的页面。
<meta http-equiv="window-target" content="_top">
自动跳转(5指时间停留5秒)。
<meta http-equiv="refresh" content="5;url=www.Mb5u.com">
网页搜索机器人向导.用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。
<meta name="robots" content="none">
content的参数有all,none,index,noindex,follow,nofollow。默认是all。
收藏夹图标
<link rel = "shortcut icon" href="favicon.ico">
如果您还有什么知识需要补充,欢迎在Mb5u.com发表评论。
相关XHTML教程:
- HTML5 INPUT placeholder及兼容性处理
- HTML表单里的Label标签
- 浅析HTML与javascript中常用编码
- CSS网页布局中必须要了解的几个XHTML标签
- title和alt 标签介绍及其异同
- 浅析HTML标签strong和em的区别
- 说说XHTML中的alt属性和title属性
- Semantics语义是Html Xhtml是否真正符合标准的重要部分
- 九个W3C XHTML1.0及CSS标准认证需要注意的问题
- HTML validate - 验证HTML代码穿越多重浏览器标准
- XHTML具有语义的标签:有关H1位置的讨论
- HTML结构更加清晰、规范,学习HTML5优化结构的思路。
- 相关链接:
- 教程说明:
XHTML教程-请注意页面head区域的编码是不是规范。