Windows Icons

Favicon Sizes, What a Site Actually Needs in 2026

Leena Taylor Paul By Updated August 16, 2026 9 min read
Quick Answer

A modern site needs five icon files, a multi size favicon.ico, a 180 pixel Apple touch icon, 192 and 512 pixel manifest PNGs and optionally an SVG. Design the art once as a 512 pixel square and everything else is generated from it. The Create Favicon Package tool in the Univik ICO Converter produces the whole set from one image in a single pass.

Search for favicon sizes and you find two kinds of advice, short lists and thirty file monsters. The long lists are leftovers from a decade of device specific icons that the platforms themselves have since retired. This guide gives you the small set that current browsers, phones and install prompts actually request, what each file does, and the one habit that makes the whole thing painless, drawing the art once at full size.

The whole set, drawn to scale
16 32 48 favicon.ico 180 Apple 192 launcher 512 install SVGany size
Three tiny frames in one .ico, three PNGs for phones and installs, one optional vector

The Five Files and What Each One Does

favicon.ico
The root fallback, an ICO container carrying 16, 32 and 48 pixel entries together. Even very old browsers know to ask for it.
apple-touch-icon.png
One 180 pixel square PNG for iPhone and iPad home screens. The device rounds the corners itself.
Two manifest PNGs
192 pixels for the Android home screen launcher and 512 pixels for install prompts and the splash screen.
Optional SVG
A vector icon that stays sharp at any size and can adapt to dark mode. A bonus layer, not a requirement.

That set matches what the current generation of favicon size references converge on, and it covers browser tabs, bookmarks, phone home screens and installable app flows without a single wasted file.

Wiring the files up takes four lines in the page head plus the manifest reference.

<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">

The manifest file then names the 192 and 512 PNGs, and every surface finds its icon from there.

The favicon.ico Layer, Still the Foundation

The oldest file in the set refuses to retire for a good reason. When a page declares nothing, browsers still request favicon.ico from the site root, and older clients read nothing else at all. One ICO file carries the 16, 32 and 48 pixel entries together, and the browser picks the frame it wants, the same container trick Windows icons have always used. Building that file from your logo is exactly what converting a PNG to a real ICO walks through, and the container format itself is written up on the ICO file extension page.

The Apple Touch Icon, One Size Only

iOS home screens use a single 180 pixel PNG named apple-touch-icon.png. The lists of 57, 76, 114 and 152 pixel variants in older tutorials describe devices Apple consolidated years ago, and shipping them today adds requests for platforms that no longer ask. Two habits matter here. Ship a full square, because the device applies its own rounded corner mask, and pre rounding your art makes it shrink inside the mask. And keep the art bold, since a subtle design turns to noise on a busy home screen.

The Manifest Pair, 192 and 512

Installable sites declare their icons in a web app manifest, and the spec asks for two, as the current minimal set guides spell out. The 192 pixel PNG becomes the launcher icon on an Android home screen. The 512 pixel PNG carries the install prompt and the splash screen, which makes it the largest and most visible copy of your icon anywhere. Even a plain content site benefits from shipping the pair, they cost two small files and future proof the day someone adds installability.

Design once at 512

Draw the icon as a 512 pixel square with a transparent background and a little safe margin inside the edges. Every other file in the set is a downscale of that one master, which keeps all five visually identical.

One Image In, the Whole Package Out

Generating five files by hand in an editor is exactly the kind of chore that gets skipped, which is why half the web has a sharp tab icon and a blurry install prompt. The Create Favicon Package tool in the Univik ICO Converter takes one square image and writes the complete set in a single pass, the multi size favicon.ico and each PNG at its exact size, transparency intact throughout. Drop the files at the site root, wire up the link tags and the job is finished.

The full favicon set from one logo

Create Favicon Package turns a single square image into favicon.ico plus every PNG size the modern set calls for, named and ready to upload.

Free Download See All Features

The Sizes to Stop Shipping

Old checklists survive by copy and paste, so it is worth naming what fell off the required list. The parade of Apple sizes below 180 pixels serves retired devices. Windows tile markup for pinned sites belongs to browsers that are gone. And hand exported 64, 96 and 128 pixel PNGs duplicate work the ICO entries and the SVG already do. Trimming a bloated set back to the five files removes requests from every page load and changes nothing a visitor can see.

The Square and Margin Rules

Two design rules cover most favicon quality problems. Every surface draws a square, so the art must be square from the start, a rectangle gets squeezed or padded. And several surfaces mask the icon, rounding corners on iOS or cropping to circles on some Android launchers, so anything important must sit inside a safe margin away from the edges. A logo that hugs the border of the canvas loses its edges on half the phones that display it.

Checking a Live Site's Set

The fastest education is looking at how established sites ship their icons, and the fastest audit of your own site is fetching what a visitor gets. Both jobs use the same techniques, the root file check and the page source read, walked through in the guide to getting the favicon from any website. And when an audit turns up an old ICO you no longer have the source art for, converting the ICO back to PNG recovers the artwork at every size it holds.

Frequently Asked Questions

For the browser tab, 16 and 32 pixels, packed together inside one favicon.ico file. For the rest of the picture a site wants a 180 pixel Apple touch icon and 192 plus 512 pixel PNGs for the web app manifest. Design the art once at 512 and generate the smaller files from it.

Yes, as the fallback layer. Browsers still request the root favicon.ico when a page does not declare icons, and older clients read nothing else. It costs one small file to keep every visitor covered, so current guidance keeps it in the set alongside the PNG and manifest icons rather than replacing it.

One size, 180 by 180 pixels, saved as apple-touch-icon.png. It appears when someone adds the site to an iPhone or iPad home screen. Ship it as a full square with no pre rounded corners, because the device applies its own corner rounding and masking on top of your art.

They are the two icons a web app manifest references. The 192 pixel PNG becomes the home screen launcher icon on Android, and the 512 pixel PNG serves the install prompt and splash screen. A site that never intends to be installable can still ship them cheaply, since they cost two small files.

Yes. Every surface that shows a favicon draws a square, and a rectangular file gets squeezed or padded to fit. Make the source art square from the start, and leave a little safe margin inside the edges so platform masks and rounded corners do not clip anything important.

No. Those long lists come from an era of device specific icons that platforms have since consolidated. Current guides across the board land on a compact set, the multi size favicon.ico, an optional SVG, the 180 Apple touch icon and the two manifest PNGs. Extra sizes add requests without adding quality.
Leena Taylor Paul

Written and maintained by Leena Taylor Paul and the Univik team, developers of Windows data conversion and recovery software since 2013. Designing the favicon package generator meant auditing what today's browsers and phones actually request, and this five file set is what survived that audit. Last verified August 2026. Favicon set acting up? Contact our support team.