Skip to content

Instantly share code, notes, and snippets.

@YiqinZhao
Created December 31, 2017 01:16
Show Gist options
  • Save YiqinZhao/9c96a8270e033ec9ccddddfe43cc5d74 to your computer and use it in GitHub Desktop.
Save YiqinZhao/9c96a8270e033ec9ccddddfe43cc5d74 to your computer and use it in GitHub Desktop.
Useful tags in <head>
<html>
<heda>
<!-- Scratch view for full screen mode in iOS web app -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, viewport-fit=cover">
<!-- WebApp setup -->
<!-- black-translucent: No background for statebar -->
<!-- black: Black background for statebar -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- Web app icon -->
<link rel="apple-touch-icon" sizes="57x57" href="/img/icon/[email protected]" />
<link rel="apple-touch-icon" sizes="72x72" href="/img/icon/[email protected]" />
<link rel="apple-touch-icon" sizes="114x114" href="/img/icon/[email protected]" />
<link rel="apple-touch-icon" sizes="144x144" href="/img/icon/[email protected]" />
<link href="/img/icon/[email protected]" rel="shortcut icon" />
<link href="/img/icon/[email protected]" rel="Bookmark" />
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment