/ Published in: HTML
Meta Tags to Config your Web site for iPhone, iPod Touch, and iPad users
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!--Change the Appearance of the iPhone's Status Bar--> <meta name="apple-mobile-web-app-status-bar-style" content="default" /> <!--The values that you can change for content are default (white), black and black-translucent.--> <!--Prevent Users From Scaling (Pinching)--> <meta name="viewport" content="user-scalable=no, width=device-width" /> <!--Icon for Bookmarked Website - 57 x 57 pixel .png file--> <link rel="apple-touch-icon" href="bookmark-icon.png" /> <!--Create a Splash Screen for iPhone Website - 320x460 .png file--> <link rel="apple-touch-startup-image" href="splash_screen.png" />
URL: http://www.htmlgoodies.com/beyond/webmaster/toolbox/article.php/3892251