本文转载自:众成翻译
译者:msmailcode
链接:http://www.zcfy.cc/article/2838
原文:https://github.com/joshbuchea/HEAD?utm_source=statuscode&utm_medium=medium
HEAD
可以在你文档的head标签中使用的所有内容的清单。
目录
推荐的最基本的
下面是一个最简单的网站需要的最基本的标签。
1 | <meta charset="utf-8"> |
Elements
1 | <!-- 文档标题 --> |
Meta
1 | <meta charset="utf-8"> <!-- 设置文档的字符编码 --> |
Link
1 | <!-- 指向一个CSS样式表 --> |
Favicons
1 | <!-- IE 10 及以下版本 --> |
Social 社交媒体
Facebook Open Graph
1 | <meta property="fb:app_id" content="123456789"> |
Facebook Instant Articles
1 | <meta charset="utf-8"> |
Twitter Cards
1 | <meta name="twitter:card" content="summary"> |
Google+ / Schema.org
1 | <link href="https://plus.google.com/+YourPage" rel="publisher"> |
Pinterest 让你阻止用户从你的网站上保存东西,查看 help center。 description
是可选的
1 | <meta name="pinterest" content="nopin" description="Sorry, you can't save from my website!"> |
OEmbed
1 | <link rel="alternate" type="application/json+oembed" |
Browsers浏览器 / Platforms平台
Apple iOS
1 | <!-- Smart App Banner 智能 App 广告条 --> |
Apple Safari
1 | <!-- 固定书签页 --> |
Google Android
1 | <meta name="theme-color" content="#E64545"> |
Google Chrome
1 | <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/APP_ID"> |
Google Chrome Mobile (只针对 Android)
从 Chrome 31 开始, 你可以像 Safari 一样设置你的 Web 应用为“app mode” 。
1 | <!-- 链接到一个 manifest 并定义 manifest 的元数据。 --> |
Microsoft Internet Explorer
1 | <meta http-equiv="x-ua-compatible" content="ie=edge"> |
App Links 应用关联
1 | <!-- iOS --> |
Browsers (Chinese)
360 浏览器
1 | <!-- [按指定顺序选择渲染引擎](!http://se.360.cn/v6/help/meta.html) --> |
QQ 手机浏览器
1 | <!-- 将屏幕锁定为指定方向 竖屏/横屏 --> |
UC 手机浏览器
1 | <!-- 强制页面横屏/竖屏显示 --> |
注释
性能
Moving the href
attribute to the beginning of an element improves compression when GZIP is enabled, because the href
attribute is used in a
, base
and link
tags.
当启用 GZIP 时,将 href
属性移动到元素的开始可以提高压缩,因为 href
属性 在 a
, base
and link
标签中使用。
例子:
1 | <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet"> |
其它资源
相关项目
Atom HTML Head Snippets - Atom package for
HEAD
snippetsSublime Text HTML Head Snippets - Sublime Text package for
HEAD
snippetshead-it - CLI interface for
HEAD
snippetsvue-head - Manipulating the meta information of the
HEAD
tag for Vue.js