Meta Tags - config your Web for iPhone


/ Published in: HTML
Save to your folder(s)

Meta Tags to Config your Web site for iPhone, iPod Touch, and iPad users


Copy this code and paste it in your HTML
  1. <!--Change the Appearance of the iPhone's Status Bar-->
  2. <meta name="apple-mobile-web-app-status-bar-style" content="default" />
  3. <!--The values that you can change for content are default (white), black and black-translucent.-->
  4.  
  5. <!--Prevent Users From Scaling (Pinching)-->
  6. <meta name="viewport" content="user-scalable=no, width=device-width" />
  7.  
  8. <!--Icon for Bookmarked Website - 57 x 57 pixel .png file-->
  9. <link rel="apple-touch-icon" href="bookmark-icon.png" />
  10.  
  11. <!--Create a Splash Screen for iPhone Website - 320x460 .png file-->
  12. <link rel="apple-touch-startup-image" href="splash_screen.png" />

URL: http://www.htmlgoodies.com/beyond/webmaster/toolbox/article.php/3892251

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.