Meta tags

Full Screen
Sets whether a web application runs in full-screen mode.
< meta name="apple-mobile-web-app-capable" content="yes">
Status Bar
Sets the style of the status bar for a web application.
< meta name="apple-mobile-web-app-status-bar-style" content="black">
< meta name='apple-mobile-web-app-status-bar-style' content='black-translucent'> /* Black-translucent */
Format Detection
Enables or disables automatic detection of possible phone numbers in a webpage in Safari on iOS.
< meta name="format-detection" content="telephone=no"> /* Detects phone numbers */
Viewport
Changes the logical window size used when displaying a page on iOS.
< meta name = "viewport" content = "initial-scale = 1.0">
< meta name = "viewport" content = "width = device-width">
< meta name = "viewport" content = "initial-scale = 2.3, user-scalable = no">
< meta name= "viewport" content = "width = 320, initial-scale = 2.3, user-scalable = no">