Windows 8 and Internet Explorer 10 make it possible to pin your site to the Metro start screen as a new tile. The tile then is a bookmark to your site and you can control the icon and background color being used.
There was a great post about that in the H5BP issues section and Microsoft has a full explanation. It all comes down to this:
- create a 144x144px image with your logo/icon filling the whole canvas and a transparent background
- add two
metatags in theheadof your site defining the image path and optionally the tile color - as noted in the issue post, the image must be saved as a transparent 32bit PNG (“24bit” in Photoshop’s Save For Web dialogue) without running it through image optimisers like ImageOptim
While the size is the same as for the iPad 3 homescreen icon, I strongly suggest not using the apple-touch-icon for this. In fact, it might be best not using a full color image at all. Using a white monochrome version of your logo or icon will make your site’s tile blend in perfectly with the default Metro UI system tiles.
As an example, I just pushed the Metro tile image for kremalicious.com with those meta tags:
<meta name="msapplication-TileImage" content="/metro-tile.png"/> <meta name="msapplication-TileColor" content="#015565"/>
When browsing the site in Windows 8/Internet Explorer 10, users have the choice of pinning it to the start screen:

And this is how it looks like on the Windows 8 start screen:

As you can see, pinned sites always get a smaller, square tile. Sadly, the image somehow still gets resized which makes it really hard to create pixel perfect icons for it. It’s also not possible to horizontally center the image within it’s tile, placing the logo at the bottom of the image file ended up the same. That’s because the title can fill two rows.
And the image is only used on the start screen but not on the All apps screen where your site will get the default IE logo, at least with the defined background color:

The described behavior and screenshots are from the Windows 8 Consumer Preview and may change. I will update this article if there’s new stuff in the final version.
Thanks for posting the process you went through to set these up! Not a lot of information on these in the wild yet it seems.
Thanks a lot for your advices. The monochrome logo tip is very useful.
By the way, is there a way to know a user came from this bookmark type to follow its use?
It doesn’t appear to work (at least on my Windows 8 notebook). As a final test, I pinned the kremalicious site to my Metro screen, and I don’t see your custom Metro tile either – I get what appears to be an apple touch icon. Weird. I wonder if they’ve updated how this works, or if it’s on my particular system.