Draw on a grid, export crisp icons at any size for websites, apps, and games
Read more: How to Make a Pixel Art Favicon
Favicons live at 16x16 or 32x32 pixels. At that scale, every pixel matters and traditional illustration techniques fall apart. Pixel art is built for exactly this constraint. You place each pixel deliberately on a grid, which means the final icon looks intentional rather than blurry. There is no anti-aliasing to muddy the edges and no detail lost to downscaling. The grid you draw on is the grid the browser displays.
This is why most memorable favicons look like pixel art even when they were not designed that way. The ones that work best embrace the limitation: bold shapes, minimal colors, and sharp edges. The Pixel Art Editor gives you a canvas that matches these target sizes directly, so what you see while drawing is exactly what appears in a browser tab.
| Context | Size | Notes |
|---|---|---|
| Browser tab | 16x16 px | The classic favicon size, used in tabs and history |
| Bookmarks bar | 32x32 px | Higher resolution for bookmark icons and taskbar shortcuts |
| Apple touch icon | 180x180 px | Used when saving a website to the iOS home screen |
| Android home screen | 192x192 px | Required for Progressive Web App icons on Android |
For pixel art icons at larger sizes like 180x180 or 192x192, draw at 16x16 or 32x32 and export at a higher scale (e.g., 6x or 12x). The Pixel Art Editor uses nearest-neighbor scaling, which keeps every pixel crisp and blocky rather than blurring them.
Once you have exported your favicon PNG, add it to your website by placing the file in your site's root directory and adding a link tag in the HTML head section:
<link rel="icon" href="/favicon.png">
For Apple devices, add a separate touch icon at 180x180 pixels:
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
Create the touch icon by exporting your 16x16 design at a higher scale. In the Pixel Art Editor, export at 12x to get a 192x192 image, then crop or resize to 180x180. The pixel art style scales perfectly because nearest-neighbor interpolation preserves the sharp grid.
Draw your favicon on a pixel grid and export it at any size.
Open the Pixel Art Editor -->The standard favicon is 16x16 pixels for browser tabs. For bookmarks and shortcuts, include 32x32 as well. Apple devices use 180x180 for touch icons. Create your design at 16x16 or 32x32 in the Pixel Art Editor and export at 1x for the actual file.
Open the Pixel Art Editor, set the canvas to 16x16, and draw your icon. Use 3-4 colors maximum because favicons are viewed at tiny sizes and simplicity is key. Export at 1x as PNG, rename to favicon.png, and add a link tag to your HTML.
Yes. All modern browsers support PNG favicons via the link tag: <link rel="icon" href="/favicon.png">. PNG is preferred over ICO for simplicity and transparency support. Include both 16x16 and 32x32 sizes for best coverage across browsers and devices.
Add this to your HTML head: <link rel="icon" href="/favicon.png">. For Apple devices, also add: <link rel="apple-touch-icon" href="/apple-touch-icon.png"> with a 180x180 pixel version of your icon.