Create simple favicons from text or initials.
A favicon (favorite icon) is the small icon displayed in browser tabs, bookmarks, and history entries. It's an essential branding element that helps users identify your website among many open tabs. Favicons have evolved from simple 16x16 pixel ICO files to a complex ecosystem supporting multiple devices and contexts.
| Size | Usage | Platform |
|---|---|---|
| 16x16 | Browser tabs, address bar | All browsers |
| 32x32 | Taskbar shortcuts, high-DPI tabs | Windows, modern browsers |
| 48x48 | Windows site icons | Windows |
| 64x64 | Windows site icons (high-DPI) | Windows |
| 180x180 | Apple Touch Icon | iOS, Safari |
| 192x192 | Android Chrome icon | Android |
| 512x512 | PWA splash screen | Progressive Web Apps |
For full cross-platform support, include these tags in your HTML <head>:
<!-- Standard favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- Android Chrome -->
<link rel="manifest" href="/site.webmanifest">
<!-- Microsoft -->
<meta name="msapplication-TileColor" content="#4285f4">
<meta name="theme-color" content="#ffffff">
| Format | Pros | Cons |
|---|---|---|
| .ico | Universal browser support, multiple sizes in one file | Larger file size, legacy format |
| .png | Transparency, crisp edges, modern standard | Need multiple files for sizes |
| .svg | Scalable, smallest file size, color adaptable | Limited browser support for favicons |
For Progressive Web Apps, create a site.webmanifest file:
{
"name": "Your App Name",
"short_name": "App",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Square: Traditional, fits all contexts
Rounded: Softer look, popular for apps
Circle: Modern feel, may clip on some platforms