使用 HTML5 doctype,不區(qū)分大小寫。
常用Meta標(biāo)簽:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
聲明文檔使用的字符編碼
<html>和<html>
簡(jiǎn)體中文和繁體中文,lang 屬性寫法 。z'z'z
<meta http-equiv="X-UA-Compatible" content="IE=edge">
避免使用IE兼容模式
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
如果安裝了 Google Chrome Frame,則使用 GCF 來渲染頁(yè)面,如果沒有安裝 GCF,則使用最高版本的 IE 內(nèi)核進(jìn)行渲染
<meta name="renderer" content="webkit">
360 瀏覽器就會(huì)在讀取到這個(gè)標(biāo)簽后,立即切換對(duì)應(yīng)的極速內(nèi)核
<meta http-equiv="Cache-Control" content="no-siteapp" />
通過手機(jī)百度搜索打開網(wǎng)頁(yè)時(shí),百度會(huì)對(duì)你的網(wǎng)頁(yè)進(jìn)行轉(zhuǎn)碼
<meta name="keywords" content="your keywords">
頁(yè)面關(guān)鍵詞 keywords
<meta name="description" content="your description">
頁(yè)面描述內(nèi)容 description
<meta name="author" content="author,email address">
定義網(wǎng)頁(yè)作者 author
<meta name="apple-mobile-web-app-capable" content="yes" />
是否啟用 WebApp 全屏模式
<meta name="google" value="notranslate" />
關(guān)閉chrome瀏覽器下翻譯插件
<meta name="format-detection" content="telphone=no, email=no"/>
忽略頁(yè)面中的數(shù)字電話和email識(shí)別
<meta name="apple-mobile-web-app-capable" content="yes" />
設(shè)置Web應(yīng)用是否以全屏模式運(yùn)行
<meta name='apple-touch-fullscreen' content='yes'>
"添加到主屏幕“后,打開時(shí)全屏顯示
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
定義網(wǎng)頁(yè)搜索引擎索引方式,robotterms是一組使用英文逗號(hào)「,」分割的值,取值一般有:none,noindex,nofollow,all,index和follow。
<meta name="robots" content="index,follow" /> <!-- 搜索引擎抓取 -->