HTML head 頭標籤
HTML head 頭部分的標籤、元素有很多,涉及到瀏覽器對網頁的渲染,SEO 等等,而各個瀏覽器核心以及各個國內瀏覽器廠商都有些自己的標籤元素,這就造成了很多差異性。移動網際網路時代,head 頭部結構,移動端的 meta 元素,顯得更為重要。瞭解每個標籤的意義,寫出滿足自己需求的 head 頭標籤,是本文的目的。本篇以一絲的文章為基礎,進行擴充套件總結介紹常用的 head 中各個標籤、元素的意義以及使用場景。
DOCTYPE
DOCTYPE(Document Type),該宣告位於文件中最前面的位置,處於 html 標籤之前,此標籤告知瀏覽器文件使用哪種 HTML 或者 XHTML 規範。
DTD(Document Type Definition) 宣告以 <!DOCTYPE> 開始,不區分大小寫,前面沒有任何內容,如果有其他內容(空格除外)會使瀏覽器在 IE 下開啟怪異模式(quirks mode)渲染網頁。公共 DTD,名稱格式為註冊//組織//型別 標籤//語言,註冊指組織是否由國際標準化組織(ISO)註冊,+表示是,-表示不是。組織即組織名稱,如:W3C。型別一般是 DTD。標籤是指定公開文字描述,即對所引用的公開文字的唯一描述性名稱,後面可附帶版本號。最後語言是 DTD 語言的 ISO 639 語言識別符號,如:EN 表示英文,ZH 表示中文。XHTML 1.0 可宣告三種 DTD 型別。分別表示嚴格版本,過渡版本,以及基於框架的 HTML 文件。
-
HTML 4.01 strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-
HTML 4.01 Transitional
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
HTML 4.01 Frameset
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
-
最新 HTML5 推出更加簡潔的書寫,它向前向後相容,推薦使用。
<!doctype html>
在 HTML中 doctype 有兩個主要目的。
- 對文件進行有效性驗證。
它告訴使用者代理和校驗器這個文件是按照什麼 DTD 寫的。這個動作是被動的,每次頁面載入時,瀏覽器並不會下載 DTD 並檢查合法性,只有當手動校驗頁面時才啟用。
-
決定瀏覽器的呈現模式
對於實際操作,通知瀏覽器讀取文件時用哪種解析演算法。如果沒有寫,則瀏覽器則根據自身的規則對程式碼進行解析,可能會嚴重影響 html 排版佈局。瀏覽器有三種方式解析 HTML 文件。
- 非怪異(標準)模式
- 怪異模式
- 部分怪異(近乎標準)模式 關於IE瀏覽器的文件模式,瀏覽器模式,嚴格模式,怪異模式,DOCTYPE 標籤,可詳細閱讀模式?標準!的內容。
charset
宣告文件使用的字元編碼,
<meta charset="utf-8">
html5 之前網頁中會這樣寫:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
這兩個是等效的,具體可移步閱讀:<meta charset='utf-8'> vs <meta http-equiv='Content-Type'>,所以建議使用較短的,易於記憶。
lang屬性
簡體中文
<html lang="zh-cmn-Hans">
繁體中文
<html lang="zh-cmn-Hant">
為什麼 lang="zh-cmn-Hans" 而不是我們通常寫的 lang="zh-CN" 呢,請移步閱讀: 頁頭部的宣告應該是用 lang="zh" 還是 lang="zh-cn"。
優先使用 IE 最新版本和 Chrome
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
360 使用Google Chrome Frame
<meta name="renderer" content="webkit">
360 瀏覽器就會在讀取到這個標籤後,立即切換對應的極速核。 另外為了保險起見再加入
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
這樣寫可以達到的效果是如果安裝了 Google Chrome Frame,則使用 GCF 來渲染頁面,如果沒有安裝 GCF,則使用最高版本的 IE 核心進行渲染。
相關連結:瀏覽器核心控制 Meta 標籤說明文件
百度禁止轉碼
通過百度手機開啟網頁時,百度可能會對你的網頁進行轉碼,脫下你的衣服,往你的身上貼狗皮膏藥的廣告,為此可在 head 內新增
<meta http-equiv="Cache-Control" content="no-siteapp" />
相關連結:SiteApp 轉碼宣告
SEO 優化部分
-
頁面標題<title>標籤(head 頭部必須)
<title>your title</title>
-
頁面關鍵詞 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">
相關連結:WEB1038 -
viewport
viewport 可以讓佈局在移動瀏覽器上顯示的更好。 通常會寫
<meta name="viewport" content="width=device-width, initial-scale=1.0">
width=device-width 會導致 iPhone 5 新增到主屏後以 WebApp 全屏模式開啟頁面時出現黑邊(http://bigc.at/ios-webapp-viewport-meta.orz)
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 中新增屬性,可以在頁面載入時最小化上下狀態列。這是一個布林值,可以直接這樣寫:
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
而如果你的網站不是響應式的,請不要使用 initial-scale 或者禁用縮放。
<meta name="viewport" content="width=device-width,user-scalable=yes">
相關連結:非響應式設計的viewport
適配 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。
ios 裝置
新增到主屏後的標題(iOS 6 新增)
<meta name="apple-mobile-web-app-title" content="標題"> <!-- 新增到主屏後的標題(iOS 6 新增) -->
是否啟用 WebApp 全屏模式
<meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 是否啟用 WebApp 全屏模式 -->
設定狀態列的背景顏色
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <!-- 設定狀態列的背景顏色,只有在 `"apple-mobile-web-app-capable" content="yes"` 時生效 -->
只有在 "apple-mobile-web-app-capable" content="yes" 時生效
content 引數:
- default 預設值。
- black 狀態列背景是黑色。
- black-translucent 狀態列背景是黑色半透明。 如果設定為 default 或 black ,網頁內容從狀態列底部開始。 如果設定為 black-translucent ,網頁內容充滿整個螢幕,頂部會被狀態列遮擋。
禁止數字識自動別為電話號碼
<meta name="format-detection" content="telephone=no" /> <!-- 禁止數字識自動別為電話號碼 -->
iOS 圖示
rel 引數: apple-touch-icon 圖片自動處理成圓角和高光等效果。 apple-touch-icon-precomposed 禁止系統自動新增效果,直接顯示設計原圖。 iPhone 和 iTouch,預設 57x57 畫素,必須有
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png" /> <!-- iPhone 和 iTouch,預設 57x57 畫素,必須有 -->
iPad,72x72 畫素,可以沒有,但推薦有
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72-precomposed.png" /> <!-- iPad,72x72 畫素,可以沒有,但推薦有 -->
Retina iPhone 和 Retina iTouch,114x114 畫素,可以沒有,但推薦有
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png" /> <!-- Retina iPhone 和 Retina iTouch,114x114 畫素,可以沒有,但推薦有 -->
Retina iPad,144x144 畫素,可以沒有,但推薦有
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png" /> <!-- Retina iPad,144x144 畫素,可以沒有,但推薦有 -->
IOS 圖示大小在iPhone 6 plus上是180×180,iPhone 6 是120x120。 適配iPhone 6 plus,則需要在中加上這段
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="retinahd_icon.png">
iOS 啟動畫面
官方文件:https://developer.apple.com/library/ios/qa/qa1686/_index.html 參考文章:http://wxd.ctrip.com/blog/2013/09/ios7-hig-24/
iPad 的啟動畫面是不包括狀態列區域的。
iPad 豎屏 768 x 1004(標準解析度)
<link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" /> <!-- iPad 豎屏 768 x 1004(標準解析度) -->
iPad 豎屏 1536x2008(Retina)
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" /> <!-- iPad 豎屏 1536x2008(Retina) -->
iPad 橫屏 1024x748(標準解析度)
<link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" /> <!-- iPad 橫屏 1024x748(標準解析度) -->
iPad 橫屏 2048x1496(Retina)
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> <!-- iPad 橫屏 2048x1496(Retina) -->
iPhone 和 iPod touch 的啟動畫面是包含狀態列區域的。
iPhone/iPod Touch 豎屏 320x480 (標準解析度)
<link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" /> <!-- iPhone/iPod Touch 豎屏 320x480 (標準解析度) -->
iPhone/iPod Touch 豎屏 640x960 (Retina)
<link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png" /> <!-- iPhone/iPod Touch 豎屏 640x960 (Retina) -->
iPhone 5/iPod Touch 5 豎屏 640x1136 (Retina)
<link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png" /> <!-- iPhone 5/iPod Touch 5 豎屏 640x1136 (Retina) -->
新增智慧 App 廣告條 Smart App Banner(iOS 6+ Safari)
<meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL"> <!-- 新增智慧 App 廣告條 Smart App Banner(iOS 6+ Safari) -->
iPhone 6對應的圖片大小是750×1294,iPhone 6 Plus 對應的是1242×2148 。
<link rel="apple-touch-startup-image" href="launch6.png" media="(device-width: 375px)"> <link rel="apple-touch-startup-image" href="launch6plus.png" media="(device-width: 414px)">
Windows 8
Windows 8 磁貼顏色
<meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁貼顏色 -->
Windows 8 磁貼圖示
<meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁貼圖示 -->
rss訂閱
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <!-- 新增 RSS 訂閱 -->
favicon icon
<link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> <!-- 新增 favicon icon -->
比較詳細的 favicon 介紹可參考https://github.com/audreyr/favicon-cheat-sheet
移動端的meta
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="format-detection"content="telephone=no, email=no" /> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <meta name="apple-mobile-web-app-capable" content="yes" /><!-- 刪除蘋果預設的工具欄和選單欄 --> <meta name="apple-mobile-web-app-status-bar-style" content="black" /><!-- 設定蘋果工具欄顏色 --> <meta name="format-detection" content="telphone=no, email=no" /><!-- 忽略頁面中的數字識別為電話,忽略email識別 --> <!-- 啟用360瀏覽器的極速模式(webkit) --> <meta name="renderer" content="webkit"> <!-- 避免IE使用相容模式 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- 針對手持裝置優化,主要是針對一些老的不識別viewport的瀏覽器,比如黑莓 --> <meta name="HandheldFriendly" content="true"> <!-- 微軟的老式瀏覽器 --> <meta name="MobileOptimized" content="320"> <!-- uc強制豎屏 --> <meta name="screen-orientation" content="portrait"> <!-- QQ強制豎屏 --> <meta name="x5-orientation" content="portrait"> <!-- UC強制全屏 --> <meta name="full-screen" content="yes"> <!-- QQ強制全屏 --> <meta name="x5-fullscreen" content="true"> <!-- UC應用模式 --> <meta name="browsermode" content="application"> <!-- QQ應用模式 --> <meta name="x5-page-mode" content="app"> <!-- windows phone 點選無高光 --> <meta name="msapplication-tap-highlight" content="no"> <!-- 適應移動端end -->
這是來自 toobug 的分享總結。
更多的 meta 標籤參考
參考文章:
相關文章
- HTML <head>標籤HTML
- html的頭標籤HTML
- 移動前端不得不瞭解的html5 head 頭標籤前端HTML
- HTML <a> 標籤HTML
- HTML 標籤HTML
- HTML 標籤HTML
- html標籤HTML
- JavaScript獲取head標籤物件JavaScript物件
- HTML-head頭部淺析HTML
- HTML標籤(基本標籤的使用)HTML
- HTML <var> 標籤HTML
- HTML <canvas> 標籤HTMLCanvas
- HTML <article> 標籤HTML
- HTML <section> 標籤HTML
- HTML <main> 標籤HTMLAI
- HTML <time> 標籤HTML
- html標籤整理HTML
- HTML <footer> 標籤HTML
- HTML <nav> 標籤HTML
- HTML <body>標籤HTML
- HTML <meta>標籤HTML
- html基本標籤HTML
- HTML <iframe>標籤HTML
- HTML <span>標籤HTML
- HTML 常用標籤HTML
- HTML常用標籤HTML
- HTML <div>標籤HTML
- html標籤使用HTML
- HTML標籤(1)HTML
- html列表標籤HTML
- HTML標籤(2)HTML
- HTML標籤(3)HTML
- html meta標籤HTML
- HTML DOCTYPE 標籤HTML
- html排版標籤HTML
- 01 HTML標籤HTML
- 前端html:標籤前端HTML
- html中常用的標籤-表格標籤HTML