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