Created
December 17, 2013 01:13
-
-
Save basecss/7998264 to your computer and use it in GitHub Desktop.
html head
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> <!-- HTML5 doctype 不区分大小写 --> | |
<html lang="zh-cmn-Hans-CN"> <!-- 更加标准的 lang 属性写法 http://zhi.hu/XyIa --> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <!-- 优先使用IE最新版本和 Chrome --> | |
<!-- width=device-width 会导致 iPhone 5 添加到主屏后以 WebAPP 全屏模式打开页面时出现黑边 http://bigc.at/ios-webapp-viewport-meta.orz --> | |
<meta name ="viewport" content ="initial-scale=1.0, maximum-scale=3, minimum-scale=1, user-scalable=no"> | |
<meta name="apple-mobile-web-app-title" content="标题"> <!-- 添加到主屏时的标题 --> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 是否启用 WebAPP 全屏模式 --> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <!-- 状态条颜色 --> | |
<meta name="format-detection" content="telephone=no" /> <!-- 屏蔽数字识自动别为电话号码 --> | |
<!-- iOS 图标 begin --> | |
<!-- 非视网膜 iPhone 低于 iOS 7 --> | |
<link rel="apple-touch-icon" href="icon57.png" sizes="57x57"> | |
<!-- 非视网膜 iPad 低于 iOS 7 --> | |
<link rel="apple-touch-icon" href="icon72.png" sizes="72x72"> | |
<!-- 非视网膜 iPad iOS 7 --> | |
<link rel="apple-touch-icon" href="icon76.png" sizes="76x76"> | |
<!-- 视网膜 iPhone 低于 iOS 7 --> | |
<link rel="apple-touch-icon" href="icon114.png" sizes="114x114"> | |
<!-- 视网膜 iPhone iOS 7 --> | |
<link rel="apple-touch-icon" href="icon120.png" sizes="120x120"> | |
<!-- 视网膜 iPad 低于 iOS 7 --> | |
<link rel="apple-touch-icon" href="icon144.png" sizes="144x144"> | |
<!-- 视网膜 iPad iOS 7 --> | |
<link rel="apple-touch-icon" href="icon152.png" sizes="152x152"> | |
<!-- iOS 图标 end --> | |
<meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁贴颜色 --> | |
<meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁贴图标 --> | |
<!-- SEO 优化 --> | |
<meta name="description" content="" /> <!-- 页面描述 --> | |
<meta name="keywords" content=""/> <!-- 页面关键词 --> | |
<title>页面标题</title> | |
</head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment