Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Created January 3, 2021 06:40
Show Gist options
  • Save miguelmota/b874f287a77d96034b26a68ab56280f5 to your computer and use it in GitHub Desktop.
Save miguelmota/b874f287a77d96034b26a68ab56280f5 to your computer and use it in GitHub Desktop.
Apple iOS "Add to Home Screen" HTML meta tags
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="application-name" content="MyApp" />
<meta name="apple-mobile-web-app-title" content="MyApp" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="/icon.png" />
@PurifyCode
Copy link

thank you so much :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment