复制代码
<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
XML/HTML Code复制内容到剪贴板
<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">









