Early Access
msapplication-TileImage
Specifies the image to be used when the website is pinned to the Windows Start menu as a Live Tile. This tag is part of Microsoft's compatibility meta tags for enhancing user experience on Windows devices.
Code Examples
<meta name="msapplication-TileImage" content="/path/to/square-image-144x144.png" />
Recommendations
- Use Square ImagesEnsure the image provided is square. Microsoft recommends a minimum size of 144×144 pixels for optimal display on different devices.
- Consider Transparent BackgroundImages with transparent backgrounds are more versatile, allowing the Windows Start menu's color scheme to show through, creating a more integrated appearance.
- File Format MattersAlthough PNG is recommended for its support for transparency, JPEG can also be used, especially for more complex images where file size may be a concern.
- High Resolution for Better DisplayFor a crisper and clearer display on high-resolution devices, consider using images larger than the minimum recommendation, scaling up to 310×310 pixels.
Related Documentation
Related Meta Tags
Provides a custom title for a web application when added to the home screen on Apple iOS devices. This title appears below the app icon, offering more control over branding and user interface.
<meta name="apple-mobile-web-app-title" content="MyApp">
Specifies the style of the status bar for a web application when added to the homescreen of an iOS device. This meta tag influences the appearance of the status bar to either match the web app design or maintain the default iOS style.
<meta name="apple-mobile-web-app-status-bar-style" content="default">
Specifies whether a web application runs in full-screen mode when added to the homescreen of an Apple device.
<meta name="apple-mobile-web-app-capable" content="yes">
apple-itunes-app
Promotes an iOS app on Apple’s App Store directly within the Safari browser. When added to a web page, it triggers a banner suggesting users to install the app.
<meta name="apple-itunes-app" content="app-id=123456789">
Indicates to mobile browsers that the website can be run as a standalone application when added to the user’s home screen, offering a more app-like user experience.
<meta name="mobile-web-app-capable" content="yes">
Community