Free · Client-side · No signup

Real favicons in seconds.

Turn any image into every icon your site needs — a real multi-size .ico, PNGs, Apple Touch & PWA icons. Everything runs in your browser; nothing is uploaded.

Drop your image here

or click to browse — PNG, JPG, SVG, WebP supported

Real ICO Files

True multi-size .ico format

100% Private

Nothing ever uploaded

All Platforms

iOS, Android, Windows

Instant

No waiting, no signup

How to use favicons — quick guide
Note: This guide is for general information. Implementation may vary by platform, CMS or host. Always test across browsers and devices.

What is a favicon?

A favicon ("favorite icon") is the small image shown in browser tabs, bookmarks, history and on mobile home screens. It aids brand recognition and makes your site easy to spot among open tabs.

Formats & sizes

FileSizeUsed for
icon.svgvectorModern browsers, scales sharp, dark-mode aware
favicon.ico16 / 32 / 48Legacy browsers, Windows shortcuts
apple-touch-icon.png180×180iOS home screen, Safari
android-chrome-192.png192×192Android home screen, PWA
android-chrome-512.png512×512Android splash, PWA

How to add it to your site

Place the files in your site root and add these lines to your HTML <head>:

<link rel="icon" href="/favicon.ico" sizes="48x48">
<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">

Tips for best results

  • Keep it simple — it must be recognizable at 16×16 pixels.
  • Ship an SVG — it stays crisp and can adapt to dark mode.
  • Test thoroughly — hard-refresh (Ctrl+Shift+R) to see changes.
  • Place in root — many browsers auto-look for /favicon.ico.