Sample ICO Files — Favicons & Windows Icons
Download free sample ICO files — browser favicons (16×16 to 48×48), a multi-size ICO with all sizes combined, and a 256×256 Windows application icon.
favicon-16.ico
1 KB
16×16
Verified file details
- Filename
- favicon-16.ico
- Exact size
- 1,150 bytes
- Displayed size
- 1 KB
- MIME type
- image/x-icon
- Dimensions
- 16 x 16 px
- License
- CC0 / Public Domain
- Download URL
- https://truefilesize.com/files/ico/favicon-16.ico
favicon-32.ico
4 KB
32×32
Verified file details
- Filename
- favicon-32.ico
- Exact size
- 4,286 bytes
- Displayed size
- 4 KB
- MIME type
- image/x-icon
- Dimensions
- 32 x 32 px
- License
- CC0 / Public Domain
- Download URL
- https://truefilesize.com/files/ico/favicon-32.ico
favicon-48.ico
9 KB
48×48
Verified file details
- Filename
- favicon-48.ico
- Exact size
- 9,662 bytes
- Displayed size
- 9 KB
- MIME type
- image/x-icon
- Dimensions
- 48 x 48 px
- License
- CC0 / Public Domain
- Download URL
- https://truefilesize.com/files/ico/favicon-48.ico
favicon-multi.ico
15 KB
Verified file details
- Filename
- favicon-multi.ico
- Exact size
- 15,086 bytes
- Displayed size
- 15 KB
- MIME type
- image/x-icon
- License
- CC0 / Public Domain
- Download URL
- https://truefilesize.com/files/ico/favicon-multi.ico
app-icon.ico
345 KB
256×256
Verified file details
- Filename
- app-icon.ico
- Exact size
- 353,118 bytes
- Displayed size
- 345 KB
- MIME type
- image/x-icon
- Dimensions
- 256 x 256 px
- License
- CC0 / Public Domain
- Download URL
- https://truefilesize.com/files/ico/app-icon.ico
How to use ICO files
Browser favicon (HTML)
<link rel="icon" type="image/x-icon" href="/favicon.ico">Modern approach (PNG favicon)
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png">Next.js App Router
// Place favicon.ico in app/ directory — auto-detectedTechnical specifications
| Format | ICO (Windows Icon) |
| Contains | One or more PNG/BMP images at different sizes |
| Common sizes | 16×16, 32×32, 48×48, 256×256 |
| Used by | Browser favicons, Windows desktop icons |
| Multi-size | Single .ico can contain all sizes |
Frequently Asked Questions
Should I use ICO or PNG for my favicon?
For maximum compatibility, use both: a favicon.ico (for legacy browsers and bookmarks) and PNG favicons for modern browsers. The ICO format is the only format guaranteed to work everywhere, including older IE versions.
What is a multi-size ICO file?
A single .ico file can contain multiple images at different sizes (e.g. 16×16, 32×32, 48×48). The operating system or browser automatically selects the best size. Our favicon-multi.ico contains 16, 32, and 48px variants.
What size should my favicon be?
16×16 for browser tabs, 32×32 for taskbars and bookmarks, 48×48 for Windows desktop shortcuts, and 256×256 for high-DPI displays and Windows application icons. A multi-size ICO covers all cases.
How do I create an ICO file?
Online: favicon.io, realfavicongenerator.net. CLI: ImageMagick (convert icon.png icon.ico). Node.js: png-to-ico package. Most tools can combine multiple sizes into a single .ico file.
Can I use SVG as a favicon?
Yes, modern browsers support SVG favicons: <link rel="icon" type="image/svg+xml" href="/favicon.svg">. However, ICO is still needed as a fallback for older browsers and some bookmark managers.
Other image formats
Related reading
·9 min
WebP vs PNG vs JPG — Which Format Should You Use?
Comprehensive comparison of WebP, PNG, and JPG image formats. File size, quality, browser support, and when to use each format.
·10 min
Image Optimization for Web Performance
Modern formats, responsive srcset, lazy loading, and CDN tricks. Cut LCP by 40% with proper image optimization. Sample JPG, PNG, and WebP files included.
·6 min
SVG vs PNG for Icons — Which Wins in 2025?
When to use SVG, when to use PNG for favicons and UI icons. Accessibility, animation, file size, and caching — with side-by-side samples you can copy.