查找总结了一些HTML5头部
标签常用信息,有错误的,敬请留言指正,或可以留言补充,欢迎留言交流!<meta charset="utf-8" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="author" content="" /> <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="renderer" content="webkit" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <meta name="screen-orientation" content="portrait" /> <meta name="x5-orientation" content="portrait" /> <meta name="full-scerrn" content="yes" /> <meta name="x5-fullscreen" content="ture" /> <meta name="x5-page-mode" content="app" /> <meta name="browsermode" content="application"> <meta name="msapplication-tap-highlight" content="no" /> <meta name="format-detection" name="email=no" /> <meta name="apple-mobile-web-app-title" content="标题" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent/black/default" /> <meta name="format-detection" content="telephone=no" /> <meta name="apple-itunes-app" content="app-id=myappstoreID,affiliate-data=myaffiliatedata,app-argument=myurl" />
为移动设备添加 viewport
viewport
可以让布局在移动浏览器上显示的更好。 通常会写
<meta name ="viewport" content ="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no">
content 参数:
- width viewport 宽度(数值/device-width)
- height viewport 高度(数值/device-height)
- initial-scale 初始缩放比例
- maximum-scale 最大缩放比例
- minimum-scale 最小缩放比例
- user-scalable 是否允许用户缩放(yes/no)
- minimal-ui iOS 7.1 beta 2 中新增属性(注意:iOS8 中已经删除),可以在页面加载时最小化上下状态栏。这是一个布尔值,可以直接这样写:
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
而如果你的网站不是响应式的,请不要使用 initial-scale 或者禁用缩放。
<meta name="viewport" content="width=device-width,user-scalable=yes">
适配 iPhone 6 和 iPhone 6plus 则需要写:
<meta name="viewport" content="width=375"> <meta name="viewport" content="width=414">
大部分 4.7~5 寸的安卓设备的 viewport 宽设为 360px,iPhone 6 上却是 375px,大部分 5.5 寸安卓机器(比如说三星 Note)的 viewport 宽为 400,iPhone 6 plus 上是 414px。
SEO 优化部分
页面标题
标签(head 头部必须)
<title>your titletitle>
页面关键词 keywords
<meta name="keywords" content="your keywords">
页面描述内容 description
<meta name="description" content="your description">
定义网页作者 author
<meta name="author" content="author,email address">
定义网页搜索引擎索引方式,robotterms 是一组使用英文逗号「,」分割的值,通常有如下几种取值:none,noindex,nofollow,all,index和follow。
<meta name="robots" content="index,follow">
百度禁止转码
通过百度手机打开网页时,百度可能会对你的网页进行转码,脱下你的衣服,往你的身上贴狗皮膏药的广告,为此可在 head 内添加
<meta http-equiv="Cache-Control" content="no-siteapp" />
不推荐的 meta 属性
下面是不推荐使用的 meta 属性,因为它们采用率低,或已弃用:
<meta name="language" content="en"> <meta name="keywords" content="你,关键字,在这里,不使用空格,而用逗号进行分隔"> <meta name="revised" content="Sunday, July 18th, 2010, 5:15 pm"> <meta name="reply-to" content="email@example.com"> <meta name="author" content="name, email@example.com"> <meta name="designer" content=""> <meta name="owner" content=""> <meta name="revisit-after" content="7 days"> <meta http-equiv="refresh" content="300; url=https://example.com/"> <meta name="topic" content=""> <meta name="summary" content=""> <meta name="classification" content="business"> <meta name="identifier-URL" content="https://example.com/"> <meta name="category" content=""> <meta name="coverage" content="Worldwide"> <meta name="distribution" content="Global"> <meta http-equiv="Pics-label" content="value"> <meta http-equiv="Expires" content="0"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache">
link 标签
说到 link 标签,估计大家的第一反应和我一样,就是引入外部CSS样式文件的,不错,这是 link 标签最最常用的功能。不过它还有很多别的用处,比如这是浏览器 favicon 图标,touch图标等等。
<link rel="canonical" href="https://example.com/2010/06/9-things-to-do-before-entering-social-media.html"> <link rel="shortlink" href="https://example.com/?p=42"> <link rel="amphtml" href="https://example.com/path/to/amp-version.html"> <link rel="stylesheet" href="https://example.com/styles.css"> <link rel="manifest" href="manifest.json"> <link rel="author" href="humans.txt"> <link rel="copyright" href="copyright.html"> <link rel="alternate" href="https://es.example.com/" hreflang="es"> <link rel="me" href="https://google.com/profiles/thenextweb" type="text/html"> <link rel="me" href="mailto:name@example.com"> <link rel="me" href="sms:+15035550125"> <link rel="archives" href="https://example.com/2003/05/" title="May 2003"> <link rel="index" href="https://example.com/" title="DeWitt Clinton"> <link rel="start" href="https://example.com/photos/pattern_recognition_1_about/" title="Pattern Recognition 1"> <link rel="prev" href="https://example.com/opensearch/opensearch-and-openid-a-sure-way-to-get-my-attention/"
title="OpenSearch and OpenID? A sure way to get my attention."> <link rel="self" type="application/atom+xml" href="https://example.com/atomFeed.php?page=3"> <link rel="first" href="https://example.com/atomFeed.php"> <link rel="next" href="https://example.com/atomFeed.php?page=4"> <link rel="previous" href="https://example.com/atomFeed.php?page=2"> <link rel="last" href="https://example.com/atomFeed.php?page=147">
rss订阅
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
不推荐的link标签
以下是不推荐使用的链接关系:
<link rel="shortcut icon" href="path/to/favicon.ico"> <link rel="subresource" href="styles.css">
favicon 图标
IE 11, Chrome, Firefox, Safari, Opera支持形式设置:
<link rel="icon" href="path/to/favicon-16.png" sizes="16x16" type="image/png"> <link rel="icon" href="path/to/favicon-32.png" sizes="32x32" type="image/png"> <link rel="icon" href="path/to/favicon-48.png" sizes="48x48" type="image/png"> <link rel="icon" href="path/to/favicon-62.png" sizes="62x62" type="image/png"> <link rel="icon" href="path/to/favicon-192.png" sizes="192x192" type="image/png">
注意:对于IE 10及以下版本不支持形式设置,只通过将命名为
favicon.ico
的文件放置在网站根目录中实现。
浏览器及平台详细说明
QQ 浏览器(X5 内核)
QQ 浏览器(X5 内核)同样适用于微信,QQ等第三方应用页面开发。
<meta name="x5-orientation" content="portrait|landscape"> <meta name="x5-fullscreen" content="true"> <meta name="x5-page-mode" content="app">
360浏览器
设置 360 浏览器渲染模式:webkit
为极速内核,ie-comp
为 IE 兼容内核,ie-stand
为 IE 标准内核。
<meta name="renderer" content="webkit|ie-comp|ie-stand">
360 浏览器就会在读取到这个标签后,立即切换对应的极速核。 另外为了保险起见再加入
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
这样写可以达到的效果是如果安装了 Google Chrome Frame,则使用 GCF 来渲染页面,如果没有安装 GCF,则使用最高版本的 IE 内核进行渲染。
UC 浏览器
设置屏幕方向
portrait 为横屏,landscape 为竖屏。
<meta name="screen-orientation" content="portrait|landscape">
设置全屏
<meta name="full-screen" content="yes">
设置适应屏幕排版(缩放是否显示滚动条)
UC 浏览器在标准排版效果实现的基础上,提供适应屏幕的排版方式,当设置为 uc-fitscreen=yes,页面进行缩放操作时,仅放大图片和文字等元素,但不放大屏幕宽度,保持不出现水平(横向)滚动条。
<meta name="viewport" content="uc-fitscreen=no|yes">
排版模式
UC 浏览器提供两种排版模式,分别是适屏模式(fitscreen)及标准模式(standard),其中适屏模式简化了一些页面的处理,使得页面内容更适合进行页面阅读、节省流量及响应更快,而标准模式则能按照标准规范对页面进行排版及渲染。
<meta name="layoutmode" content="fitscreen|standard">
夜间模式
可以帮助用户在低亮度或黑暗情况下更舒适的进行页面浏览。由于基于网页的应用愈加复杂,由浏览器实现的单一夜间模式不一定能够适应所有情况(例如游戏应用),因此 UC 浏览器允许网页设计者对其设计的页面禁用浏览器的夜间模式,自行设计更适合用户使用的夜间模式。
注意:页面内的 frame/iframe 中的夜间模式的 meta 不生效。
<meta name="nightmode" content="enable|disable">
整页图片强制显示
为了节省流量及加快速度,UC 为用户提供了无图模式,在实际使用中存在页面中的图片是不可缺少的,例如验证码,地图等。通过强制图片显示的功能可以保证图片显示不受用户的设置影响。
**注意:整页图片强制显示仅对当前页面生效,对页面内的 frame/iframe 不生效,也不影响前进后退的页面
<meta name="imagemode" content="force">
开启应用模式
<meta name="browsermode" content="application">
应用模式是为方便 Web 应用及游戏开发者设置的综合开关,通过meta标签进行指示打开,当进入应用模式时,浏览器将自动调整以下参数:
参数 | 状态 | 说明 |
---|---|---|
全屏 | 生效 | 可通过 meta 或 JS API 调用退出全屏 |
长按菜单 | 失效 | 可通过 JS API 调用重新生效 |
浏览器默认手势 | 失效 | 可通过 JS API 调用重新生效 |
排版模式 | 标准模式 | 可通过 meta 或 JS API 调用设置其他排版模式 |
强制图片显示 | 生效 | / |
夜间模式 | 失效 | 可通过 meta 或 JS API 调用启用夜间模式 |
缩放字体
例如:禁用的 UC 浏览器的字体缩放功能
<meta name="wap-font-scale" content="no">
Apple iOS原生浏览器
添加智能 App 广告条
告诉浏览器这个网站对应的app,并在页面上显示下载banner,需要注意的是Smart App Banners标签不能用在frame框架内部,否则不起作用。
其中app-id(必须), affiliate-data (可选), app-argument (可选)
<meta name="apple-itunes-app" content="app-id=APP_ID,affiliate-data=AFFILIATE_ID,app-argument=SOME_TEXT">
例如Digg的写法:
<meta name="apple-itunes-app" content="app-id=362872995, affiliate-data=bevbOqLt02I, app-argument=digg://">
忽略数字自动识别为电话号码
<meta name="format-detection" content="telephone=no">
启用 WebApp 全屏模式
<meta name="apple-mobile-web-app-capable" content="yes">
添加到主屏后设置状态栏的背景颜色
<meta name="apple-mobile-web-app-status-bar-style" content="black">
只有在 “apple-mobile-web-app-capable” content=”yes” 时生效。
- 如果设置为 default 或 black ,网页内容从状态栏底部开始。
- 如果设置为 black-translucent ,网页内容充满整个屏幕,顶部会被状态栏遮挡。
添加到主屏后的标题(iOS 6 新增)
<meta name="apple-mobile-web-app-title" content="App Title">
iOS 图标
图片自动处理成圆角和高光等效果。
<link rel="apple-touch-icon" href="path/to/apple-touch-icon.png">
禁止系统自动添加效果,直接显示设计原图。
<link rel="apple-touch-icon-precomposed" href="path/to/apple-touch-icon-precomposed.png">
iOS 8+ 不再支持 precomposed, 只有 apple-touch-icon 是必须的
在大多数情况下,在head中一个180×180px的图标就足够了。如果您想要由设备确定的唯一图标,请使用不同大小的图标。
<link rel="apple-touch-icon" sizes="57x57" href="path/to/icon@57.png"> <link rel="apple-touch-icon" sizes="72x72" href="path/to/icon@72.png"> <link rel="apple-touch-icon" sizes="114x114" href="path/to/icon@114.png"> <link rel="apple-touch-icon" sizes="144x144" href="path/to/icon@144.png">
启动画面 ( 不赞成使用 )
iPad 的启动画面是不包括状态栏区域的,iPhone 和 iPod touch 的启动画面是包含状态栏区域的
<link rel="apple-touch-startup-image" href="path/to/startup.png">
iOS 应用深度链接
<meta name="apple-itunes-app" content="app-id=APP-ID, app-argument=http/url-sample.com"> <link rel="alternate" href="ios-app://APP-ID/http/url-sample.com">
Google Android原生浏览器
标签页选项卡颜色
Android Lollipop 中的 Chrome 39 增加 theme-color meta 标签,用来控制选项卡颜色。
<meta name="theme-color" content="#db5945">
添加到主屏
<meta name="mobile-web-app-capable" content="yes">
安卓应用深度链接(网页上唤起应用)
<meta name="google-play-app" content="app-id=package-name"> <link rel="alternate" href="android-app://package-name/http/url-sample.com">
注:貌似没测试成功,如果你知道如何正确设置,欢迎留言斧正。
Apple Safari 浏览器
Safari 10开始支持固定书签页的SVG favicons了,你可以这样使用:
<link rel="mask-icon" href="path/to/icon.svg" color="red">
类似的效果
Google Chrome浏览器
关闭chrome浏览器下翻译插件
有些时候感觉chrome浏览器下翻译插件很烦人,可以通过下面的代码禁用它。
<meta name="google" value="notranslate" />
chrome浏览器插件安装
有时候,你需要在你的页面上点击某个安卓,直接安卓你的chrome浏览器插件,而不是链接到Chrome webstore 的详细地址再安装,那么你可以使用:
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/APP_ID">
Google Chrome Mobile (只针对 Android)
从 Chrome 31 开始,你可以设置你的 Web 应用为“app mode”,如 Safari。
<link rel="manifest" href="manifest.json"> <meta name="mobile-web-app-capable" content="yes"> <link rel="icon" sizes="192x192" href="nice-highres.png"> <link rel="icon" sizes="128x128" href="niceicon.png"> <link rel="apple-touch-icon" sizes="128x128" href="niceicon.png"> <link rel="apple-touch-icon-precomposed" sizes="128x128" href="niceicon.png">
Internet Explorer浏览器
模式设置
//IE8以下以IE7标准模式呈现网页,而IE9则以IE9的标准模式呈现网页:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9"> //如果安装了GCF,则使用GCF来渲染页面("chrome=1"), //如果没有安装GCF,则使用最高版本的IE内核进行渲染("IE=edge") <meta http-equiv="x-ua-compatible" content="ie=edge">
win8,win10下的一些设置
<meta http-equiv="cleartype" content="on"> <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"> <meta name="msapplication-tap-highlight" content="no"> <meta name="application-name" content="Contoso Pinned Site Caption"> <meta name="msapplication-tooltip" content="Example Tooltip Text"> <meta name="msapplication-starturl" content="/"> <meta name="msapplication-config" content="http://example.com/browserconfig.xml"> <meta name="msapplication-allowDomainApiCalls" content="true"> <meta name="msapplication-allowDomainMetaTags" content="true"> <meta name="msapplication-badge" content="frequency=30; polling-uri=http://example.com/id45453245/polling.xml"> <meta name="msapplication-navbutton-color" content="#FF3300"> <meta name="msapplication-notification" content="frequency=60;polling-uri=http://example.com/livetile"> <meta name="msapplication-square150x150logo" content="path/to/logo.png"> <meta name="msapplication-square310x310logo" content="path/to/largelogo.png"> <meta name="msapplication-square70x70logo" content="path/to/tinylogo.png"> <meta name="msapplication-wide310x150logo" content="path/to/widelogo.png"> <meta name="msapplication-task"
content="name=Check Order Status;action-uri=./orderStatus.aspx?src=IE9;icon-uri=./favicon.ico"> <meta name="msapplication-task-separator" content="1"> //Windows 8 磁贴颜色 <meta name="msapplication-TileColor" content="#FF3300"> //Windows 8 磁贴图标 <meta name="msapplication-TileImage" content="path/to/tileimage.jpg"> <meta name="msapplication-window" content="width=1024;height=768">
APP 链接
<meta property="al:ios:url" content="applinks://docs"> <meta property="al:ios:app_store_id" content="12345"> <meta property="al:ios:app_name" content="App Links"> <meta property="al:android:url" content="applinks://docs"> <meta property="al:android:app_name" content="App Links"> <meta property="al:android:package" content="org.applinks"> <meta property="al:web:url" content="http://applinks.org/documentation">
敬请指正补充!
(未完待续~~)