Skip to content

Instantly share code, notes, and snippets.

@plugnburn
Last active April 16, 2016 01:54
Show Gist options
  • Select an option

  • Save plugnburn/58d2215df67da2c6c0a6 to your computer and use it in GitHub Desktop.

Select an option

Save plugnburn/58d2215df67da2c6c0a6 to your computer and use it in GitHub Desktop.
A reference set of mobile meta tags for quick pasting
<!-- general features -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no"> <!-- iOS & Android -->
<meta name="format-detection" content="address=no"> <!-- iOS & Android -->
<!-- iOS only features -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Short name">
<meta name="apple-mobile-web-app-status-bar-style" content="default"> <!-- possible values: default, black, black-translucent -->
<!-- Android only features -->
<meta name="viewport" content="target-densitydpi=device-dpi"> <!-- Android only before 4.4, possible values: device-dpi, high-dpi, medium-dpi, low-dpi -->
<!-- Android Chrome and Android 4.4+ only features -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Awesome App!">
<!-- Blackberry only features -->
<meta http-equiv="x-rim-auto-match" content="none">
<meta name="HandheldFriendly" content="True">
<!-- old windows mobile only features -->
<meta http-equiv="cleartype" content="on">
<meta name="MobileOptimized" content="240">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment