html页面head区域的编码书写规范

今天我们简单的介绍一下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="[email protected]">

网站简介 
<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.jb51.net">

网页搜索机器人向导.用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。 
<meta name="robots" content="none"> 
content的参数有all,none,index,noindex,follow,nofollow。默认是all。

收藏夹图标 
<link rel = "shortcut icon" href="favicon.ico">

http://www.jb51.net/article/15404.htm

时间: 2024-09-30 20:35:42

html页面head区域的编码书写规范的相关文章

前端开发代码书写规范

规范目的: 为提高团队协作效率, 便于后台人员添加功能及前端后期优化维护, 输出高质量的文档, 特制订此文档. 本规范文档一经确认, 前端开发人员必须按本文档规范进行前台页面开发. 本文档如有不对或者不合适的地方请及时提出, 经讨论决定后方可更改. 基本准则: 符合web标准, 语义化html, 结构表现行为分离, 兼容性优良. 页面性能方面, 代码要求简洁明了有序, 尽可能的减小服务器负载, 保证最快的解析速度. 文件规范 1. html, css, js, images文件均归档至<系统开发

CSS书写规范及顺序

CSS书写规范及顺序 转载于http://www.cnblogs.com/jingwhale/p/4230374.html 一.CSS书写顺序 1.位置属性(position, top, right, z-index, display, float等)2.大小(width, height, padding, margin)3.文字系列(font, line-height, letter-spacing, color- text-align等)4.背景(background, border等)5.

PHP书写规范

PHP书写规范 PHP Coding Standard 作者:sink <[email protected]> 最后修改:2011-7-13 参考资料: PHP Manual http://www.php.net/manual/zh/language.oop5.basic.php PEAR Coding Standards http://pear.php.net/manual/en/standards.php C++ Coding Standard http://www.possibility

PHP书写规范 匈牙利命名法+驼峰法命名

PHP书写规范 PHP Coding Standard 变量命名规范这里感觉 打算采用 匈牙利命名法+驼峰法命名,因为 PHP是弱类型语言,很多时间因为忽略了变量类型而导致犯一些低级错误.所以在前面加上类型名有助于更好的理解代码. 下载是转载 PHP书写规范作者:sink <[email protected]>最后修改:2011-7-13 参考资料:PHP Manualhttp://www.php.net/manual/zh/language.oop5.basic.phpPEAR Coding

编码性能规范

目 录Table of Contents 1????前言????7 2????编码性能规范????7 2.1????线程同步规则????7 2.1.1????规则描述????7 2.1.2????案例研究????8 2.2????字符串使用规则????10 2.2.1????规则描述????10 2.2.2????案例研究????10 2.3????临时对象创建规则????17 2.3.1????规则描述????17 2.3.2????案例研究????17 2.4????集合类使用规则????2

CSS 样式书写规范

CSS书写顺序 1.位置属性(position, top, right, z-index, display, float等)2.大小(width, height, padding, margin)3.文字系列(font, line-height, letter-spacing, color- text-align等)4.背景(background, border等)5.其他(animation, transitio CSS书写规范 使用CSS缩写属性 CSS有些属性是可以缩写的,比如paddin

css书写规范

  一.CSS书写顺序     1.位置属性(position, top, right, z-index, display, float等)    2.大小(width, height, padding, margin)    3.文字系列(font, line-height, letter-spacing, color- text-align等)    4.背景(background, border等)    5.其他(animation, transition等) 二.CSS书写规范    

CSS书写规范、顺序和命名规则

一.CSS书写顺序 1.位置属性(position, top, right, z-index, display, float等)2.大小(width, height, padding, margin)3.文字系列(font, line-height, letter-spacing, color- text-align等)4.背景(background, border等)5.其他(animation, transition等) 二.CSS书写规范 1.使用CSS缩写属性 CSS有些属性是可以缩写的

css命名规范和书写规范

1.位置属性(position, top, right, z-index, display, float等)2.大小(width, height, padding, margin)3.文字系列(font, line-height, letter-spacing, color- text-align等)4.背景(background, border等)5.其他(animation, transition等) CSS书写规范 使用CSS缩写属性 CSS有些属性是可以缩写的,比如padding,mar