Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created March 26, 2012 22:03
Show Gist options
  • Save hsquareweb/2210110 to your computer and use it in GitHub Desktop.
Save hsquareweb/2210110 to your computer and use it in GitHub Desktop.
Apple Touch Icons, Windows Icons, and Splash Screens
<link rel="shortcut icon" href="/images/favicon.ico"/>
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" href="/images/touch-icon-57.png" sizes="57x57"/>
<link rel="apple-touch-icon" href="/images/touch-icon-72.png" sizes="72x72"/>
<link rel="apple-touch-icon" href="/images/touch-icon-76.png" sizes="76x76"/>
<link rel="apple-touch-icon" href="/images/touch-icon-114.png" sizes="114x114"/>
<link rel="apple-touch-icon" href="/images/touch-icon-120.png" sizes="120x120"/>
<link rel="apple-touch-icon" href="/images/touch-icon-144.png" sizes="144x144"/>
<link rel="apple-touch-icon" href="/images/touch-icon-152.png" sizes="152x152"/>
<!-- Windows 8 Tiles -->
<meta name="msapplication-TileImage" content="/images/touch-icon-144.png"/>
<meta name="msapplication-TileColor" content="#652D8A"/>
<meta name="application-name" content="The MatriXFiles" />
<!-- Internet Explorer 11 Tiles -->
<meta name="msapplication-square70x70logo" content="/images/tile-70.png"/>
<meta name="msapplication-square150x150logo" content="/images/tile-150.png"/>
<meta name="msapplication-wide310x150logo" content="/images/tile-310.png"/>
<meta name="msapplication-square310x310logo" content="/images/tile-310.png"/>
<!-- For iPad landscape splash screen -->
<link rel="apple-touch-startup-image" sizes="1024x748" href="/images/apple-splash-screen-1024x748.png"/>
<!-- For iPad portriat splash screen -->
<link rel="apple-touch-startup-image" sizes="768x1004" href="/images/apple-splash-screen-768x1004.png"/>
<!-- For iPhone, iPod high resolution portriat splash screen -->
<link rel="apple-touch-startup-image" sizes="640x960" href="/images/apple-splash-screen-640x960.png"/>
<!-- For iPhone, iPod standard resolution portriat splash screen -->
<link rel="apple-touch-startup-image" sizes="320x480" href="/images/apple-splash-screen-320x480.png"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment