主頁 > 知識(shí)庫 > HTML head 頭標(biāo)簽詳細(xì)介紹

HTML head 頭標(biāo)簽詳細(xì)介紹

熱門標(biāo)簽:騰訊植物園地圖標(biāo)注 個(gè)貸電銷機(jī)器人 經(jīng)綸電銷機(jī)器人 華為收費(fèi)站地圖標(biāo)注 電話機(jī)器人宣傳片 鄒城智能外呼系統(tǒng) 外呼智能系統(tǒng)報(bào)價(jià) 浦東新區(qū)百度地圖標(biāo)注圖片 巫山縣地圖標(biāo)注app
HTML head 頭部分的標(biāo)簽、元素有很多,涉及到瀏覽器對網(wǎng)頁的渲染,SEO 等等,而各個(gè)瀏覽器內(nèi)核以及各個(gè)國內(nèi)瀏覽器廠商都有些自己的標(biāo)簽元素,這就造成了很多差異性。移動(dòng)互聯(lián)網(wǎng)時(shí)代,head 頭部結(jié)構(gòu),移動(dòng)端的 meta 元素,顯得更為重要。了解每個(gè)標(biāo)簽的意義,寫出滿足自己需求的 head 頭標(biāo)簽,是本文的目的。本篇以一絲的文章為基礎(chǔ),進(jìn)行擴(kuò)展總結(jié)介紹常用的 head 中各個(gè)標(biāo)簽、元素的意義以及使用場景。

DOCTYPE

DOCTYPE(Document Type),該聲明位于文檔中最前面的位置,處于 html 標(biāo)簽之前,此標(biāo)簽告知瀏覽器文檔使用哪種 HTML 或者 XHTML 規(guī)范。

DTD(Document Type Definition) 聲明以 <!DOCTYPE> 開始,不區(qū)分大小寫,前面沒有任何內(nèi)容,如果有其他內(nèi)容(空格除外)會(huì)使瀏覽器在 IE 下開啟怪異模式(quirks mode)渲染網(wǎng)頁。公共 DTD,名稱格式為注冊//組織//類型 標(biāo)簽//語言,注冊指組織是否由國際標(biāo)準(zhǔn)化組織(ISO)注冊,+表示是,-表示不是。組織即組織名稱,如:W3C。類型一般是 DTD。標(biāo)簽是指定公開文本描述,即對所引用的公開文本的唯一描述性名稱,后面可附帶版本號(hào)。最后語言是 DTD 語言的 ISO 639 語言標(biāo)識(shí)符,如:EN 表示英文,ZH 表示中文。XHTML 1.0 可聲明三種 DTD 類型。分別表示嚴(yán)格版本,過渡版本,以及基于框架的 HTML 文檔。

●HTML 4.01 strict

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">  
●HTML 4.01 Transitional

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
●HTML 4.01 Frameset

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">  
●最新 HTML5 推出更加簡潔的書寫,它向前向后兼容,推薦使用。

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <!doctype html>  

在 HTML中 doctype 有兩個(gè)主要目的。

●對文檔進(jìn)行有效性驗(yàn)證。

它告訴用戶代理和校驗(yàn)器這個(gè)文檔是按照什么 DTD 寫的。這個(gè)動(dòng)作是被動(dòng)的,每次頁面加載時(shí),瀏覽器并不會(huì)下載 DTD 并檢查合法性,只有當(dāng)手動(dòng)校驗(yàn)頁面時(shí)才啟用。

●決定瀏覽器的呈現(xiàn)模式

對于實(shí)際操作,通知瀏覽器讀取文檔時(shí)用哪種解析算法。如果沒有寫,則瀏覽器則根據(jù)自身的規(guī)則對代碼進(jìn)行解析,可能會(huì)嚴(yán)重影響 html 排版布局。瀏覽器有三種方式解析 HTML 文檔。

●非怪異(標(biāo)準(zhǔn))模式
●怪異模式
●部分怪異(近乎標(biāo)準(zhǔn))模式 關(guān)于IE瀏覽器的文檔模式,瀏覽器模式,嚴(yán)格模式,怪異模式,DOCTYPE 標(biāo)簽,可詳細(xì)閱讀模式?標(biāo)準(zhǔn)!的內(nèi)容。

charset

聲明文檔使用的字符編碼,

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta charset="utf-8">  

html5 之前網(wǎng)頁中會(huì)這樣寫:

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  

這兩個(gè)是等效的,具體可移步閱讀:<meta charset='utf-8'> vs <meta http-equiv='Content-Type'>,所以建議使用較短的,易于記憶。

lang屬性

  簡體中文 

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <html lang="zh-cmn-Hans">  

  繁體中文

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <html lang="zh-cmn-Hant">    

  為什么 lang="zh-cmn-Hans" 而不是我們通常寫的 lang="zh-CN" 呢,請移步閱讀: 頁頭部的聲明應(yīng)該是用 lang="zh" 還是 lang="zh-cn"。

優(yōu)先使用 IE 最新版本和 Chrome

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />  

  360 使用Google Chrome Frame

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="renderer" content="webkit">  

  360 瀏覽器就會(huì)在讀取到這個(gè)標(biāo)簽后,立即切換對應(yīng)的極速核。 另外為了保險(xiǎn)起見再加入

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">  

  這樣寫可以達(dá)到的效果是如果安裝了 Google Chrome Frame,則使用 GCF 來渲染頁面,如果沒有安裝 GCF,則使用最高版本的 IE 內(nèi)核進(jìn)行渲染。

  相關(guān)鏈接:瀏覽器內(nèi)核控制 Meta 標(biāo)簽說明文檔

百度禁止轉(zhuǎn)碼

  通過百度手機(jī)打開網(wǎng)頁時(shí),百度可能會(huì)對你的網(wǎng)頁進(jìn)行轉(zhuǎn)碼,脫下你的衣服,往你的身上貼狗皮膏藥的廣告,為此可在 head 內(nèi)添加 

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta http-equiv="Cache-Control" content="no-siteapp" />  

  相關(guān)鏈接:SiteApp 轉(zhuǎn)碼聲明


SEO 優(yōu)化部分

頁面標(biāo)題<title>標(biāo)簽(head 頭部必須)

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <title>your title</title>  

頁面關(guān)鍵詞 keywords

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="keywords" content="your keywords">   


頁面描述內(nèi)容 description

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="description" content="your description">  

定義網(wǎng)頁作者 author

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="author" content="author,email address">  

定義網(wǎng)頁搜索引擎索引方式,robotterms 是一組使用英文逗號(hào)「,」分割的值,通常有如下幾種取值:none,noindex,nofollow,all,index和follow。

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <meta name="robots" content="index,follow">  

相關(guān)鏈接:WEB1038 - 標(biāo)記包含無效的值

viewport

  viewport 可以讓布局在移動(dòng)瀏覽器上顯示的更好。 通常會(huì)寫

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="viewport" content="width=device-width, initial-scale=1.0">  

width=device-width 會(huì)導(dǎo)致 iPhone 5 添加到主屏后以 WebApp 全屏模式打開頁面時(shí)出現(xiàn)黑邊(http://bigc.at/ios-webapp-viewport-meta.orz)

content 參數(shù):

width viewport 寬度(數(shù)值/device-width)
height viewport 高度(數(shù)值/device-height)
initial-scale 初始縮放比例
maximum-scale 最大縮放比例
minimum-scale 最小縮放比例
user-scalable 是否允許用戶縮放(yes/no)
minimal-ui iOS 7.1 beta 2 中新增屬性,可以在頁面加載時(shí)最小化上下狀態(tài)欄。這是一個(gè)布爾值,可以直接這樣寫:

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">  

而如果你的網(wǎng)站不是響應(yīng)式的,請不要使用 initial-scale 或者禁用縮放。

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="viewport" content="width=device-width,user-scalable=yes">  

相關(guān)鏈接:非響應(yīng)式設(shè)計(jì)的viewport

  適配 iPhone 6 和 iPhone 6plus 則需要寫:

XML/HTML Code
復(fù)制內(nèi)容到剪貼板

  1. <meta name="viewport" content="width=375">  
  2. <meta name="viewport" content="width=414">  

大部分 4.7~5 寸的安卓設(shè)備的 viewport 寬設(shè)為 360px,iPhone 6 上卻是 375px,大部分 5.5 寸安卓機(jī)器(比如說三星 Note)的 viewport 寬為 400,iPhone 6 plus 上是 414px。

  ios 設(shè)備

  添加到主屏后的標(biāo)題(iOS 6 新增)

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="apple-mobile-web-app-title" content="標(biāo)題"> <!-- 添加到主屏后的標(biāo)題(iOS 6 新增) -->  


是否啟用 WebApp 全屏模式

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 是否啟用 WebApp 全屏模式 -->  

設(shè)置狀態(tài)欄的背景顏色

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />    
  2. <!-- 設(shè)置狀態(tài)欄的背景顏色,只有在 `"apple-mobile-web-app-capable" content="yes"` 時(shí)生效 -->  

只有在 "apple-mobile-web-app-capable" content="yes" 時(shí)生效

  content 參數(shù):

default 默認(rèn)值。
black 狀態(tài)欄背景是黑色。
black-translucent 狀態(tài)欄背景是黑色半透明。 如果設(shè)置為 default 或 black ,網(wǎng)頁內(nèi)容從狀態(tài)欄底部開始。 如果設(shè)置為 black-translucent ,網(wǎng)頁內(nèi)容充滿整個(gè)屏幕,頂部會(huì)被狀態(tài)欄遮擋。

禁止數(shù)字識(shí)自動(dòng)別為電話號(hào)碼

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <meta name="format-detection" content="telephone=no" /> <!-- 禁止數(shù)字識(shí)自動(dòng)別為電話號(hào)碼 -->  

iOS 圖標(biāo)

  rel 參數(shù): apple-touch-icon 圖片自動(dòng)處理成圓角和高光等效果。 apple-touch-icon-precomposed 禁止系統(tǒng)自動(dòng)添加效果,直接顯示設(shè)計(jì)原圖。 iPhone 和 iTouch,默認(rèn) 57x57 像素,必須有


復(fù)制代碼
代碼如下:

<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png" /> <!-- iPhone 和 iTouch,默認(rèn) 57x57 像素,必須有 -->

  iPad,72x72 像素,可以沒有,但推薦有


復(fù)制代碼
代碼如下:

<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72-precomposed.png" /> <!-- iPad,72x72 像素,可以沒有,但推薦有 -->

  Retina iPhone 和 Retina iTouch,114x114 像素,可以沒有,但推薦有


復(fù)制代碼
代碼如下:

<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png" /> <!-- Retina iPhone 和 Retina iTouch,114x114 像素,可以沒有,但推薦有 -->

  Retina iPad,144x144 像素,可以沒有,但推薦有


復(fù)制代碼
代碼如下:

<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png" /> <!-- Retina iPad,144x144 像素,可以沒有,但推薦有 -->

  IOS 圖標(biāo)大小在iPhone 6 plus上是180×180,iPhone 6 是120x120。 適配iPhone 6 plus,則需要在中加上這段


復(fù)制代碼
代碼如下:

<link rel="apple-touch-icon-precomposed" sizes="180x180" href="retinahd_icon.png">

iOS 啟動(dòng)畫面

官方文檔:https://developer.apple.com/library/ios/qa/qa1686/_index.html
參考文章:http://wxd.ctrip.com/blog/2013/09/ios7-hig-24/

iPad 的啟動(dòng)畫面是不包括狀態(tài)欄區(qū)域的。

  iPad 豎屏 768 x 1004(標(biāo)準(zhǔn)分辨率)


復(fù)制代碼
代碼如下:

<link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" /> <!-- iPad 豎屏 768 x 1004(標(biāo)準(zhǔn)分辨率) -->

  iPad 豎屏 1536x2008(Retina)


復(fù)制代碼
代碼如下:

<link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" /> <!-- iPad 豎屏 1536x2008(Retina) -->

  iPad 橫屏 1024x748(標(biāo)準(zhǔn)分辨率)


復(fù)制代碼
代碼如下:

<link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" /> <!-- iPad 橫屏 1024x748(標(biāo)準(zhǔn)分辨率) -->

  iPad 橫屏 2048x1496(Retina)


復(fù)制代碼
代碼如下:

<link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> <!-- iPad 橫屏 2048x1496(Retina) -->

  iPhone 和 iPod touch 的啟動(dòng)畫面是包含狀態(tài)欄區(qū)域的。

  iPhone/iPod Touch 豎屏 320x480 (標(biāo)準(zhǔn)分辨率)

復(fù)制代碼
代碼如下:

<link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" /> <!-- iPhone/iPod Touch 豎屏 320x480 (標(biāo)準(zhǔn)分辨率) -->

  iPhone/iPod Touch 豎屏 640x960 (Retina)


復(fù)制代碼
代碼如下:

<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)


復(fù)制代碼
代碼如下:

<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)


復(fù)制代碼
代碼如下:

<meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL"> <!-- 添加智能 App 廣告條 Smart App Banner(iOS 6+ Safari) -->

  iPhone 6對應(yīng)的圖片大小是750×1294,iPhone 6 Plus 對應(yīng)的是1242×2148 。


復(fù)制代碼
代碼如下:

<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 磁貼顏色


復(fù)制代碼
代碼如下:

<meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁貼顏色 -->

  Windows 8 磁貼圖標(biāo)


復(fù)制代碼
代碼如下:

<meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁貼圖標(biāo) -->

  rss訂閱


復(fù)制代碼
代碼如下:

<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <!-- 添加 RSS 訂閱 -->

  favicon icon


復(fù)制代碼
代碼如下:

<link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> <!-- 添加 favicon icon -->

比較詳細(xì)的 favicon 介紹可參考https://github.com/audreyr/favicon-cheat-sheet

移動(dòng)端的meta

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />  
  2. <meta name="apple-mobile-web-app-capable" content="yes" />  
  3. <meta name="apple-mobile-web-app-status-bar-style" content="black" />  
  4. <meta name="format-detection"content="telephone=noemail=no/>  
  5. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />  
  6. <meta name="apple-mobile-web-app-capable" content="yes" /><!-- 刪除蘋果默認(rèn)的工具欄和菜單欄 -->  
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black" /><!-- 設(shè)置蘋果工具欄顏色 -->  
  8. <meta name="format-detection" content="telphone=no, email=no" /><!-- 忽略頁面中的數(shù)字識(shí)別為電話,忽略email識(shí)別 -->  
  9. <!-- 啟用360瀏覽器的極速模式(webkit) -->  
  10. <meta name="renderer" content="webkit">  
  11. <!-- 避免IE使用兼容模式 -->  
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge">  
  13. <!-- 針對手持設(shè)備優(yōu)化,主要是針對一些老的不識(shí)別viewport的瀏覽器,比如黑莓 -->  
  14. <meta name="HandheldFriendly" content="true">  
  15. <!-- 微軟的老式瀏覽器 -->  
  16. <meta name="MobileOptimized" content="320">  
  17. <!-- uc強(qiáng)制豎屏 -->  
  18. <meta name="screen-orientation" content="portrait">  
  19. <!-- QQ強(qiáng)制豎屏 -->  
  20. <meta name="x5-orientation" content="portrait">  
  21. <!-- UC強(qiáng)制全屏 -->  
  22. <meta name="full-screen" content="yes">  
  23. <!-- QQ強(qiáng)制全屏 -->  
  24. <meta name="x5-fullscreen" content="true">  
  25. <!-- UC應(yīng)用模式 -->  
  26. <meta name="browsermode" content="application">  
  27. <!-- QQ應(yīng)用模式 -->  
  28. <meta name="x5-page-mode" content="app">  
  29. <!-- windows phone 點(diǎn)擊無高光 -->  
  30. <meta name="msapplication-tap-highlight" content="no">  
  31. <!-- 適應(yīng)移動(dòng)端end -->  


這是來自 toobug 的分享總結(jié)。

  更多的 meta 標(biāo)簽參考

  • COMPLETE LIST OF HTML META TAGS
  • 18 Meta Tags Every Webpage Should Have in 2013

  參考文章:

  • 常用的 HTML 頭部標(biāo)簽
  • html5_header
  • amazeui css
  • DOCTYPE
  • WEB 工程師和設(shè)計(jì)師必學(xué)的 10 個(gè) IOS 8 新鮮改變

標(biāo)簽:那曲 南平 三沙 廣西 滁州 楊凌 日喀則 唐山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML head 頭標(biāo)簽詳細(xì)介紹》,本文關(guān)鍵詞  HTML,head,頭,標(biāo)簽,詳細(xì),介紹,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML head 頭標(biāo)簽詳細(xì)介紹》相關(guān)的同類信息!
  • 本頁收集關(guān)于HTML head 頭標(biāo)簽詳細(xì)介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章