Once you design and compile your icons, you can download them as a single ZIP archive. This guide walks you through extracting, deploying, and integrating the icons into your website or progressive web application.
Your downloaded package contains the following structure:
head.html: A reference HTML snippet containing the exact tags you need to copy into your site's templates.manifest.json: The Web App Manifest defining application name, theme colours, and pointing to your generated icons.favicon.ico: A legacy multi-resolution favicon fallback (containing 16x16, 32x32, and 48x48 pixel frames).icon.svg and icon-maskable.svg: Vector graphics outputs (if you uploaded an SVG source).apple-touch-icon.png (180x180), icon-192.png, icon-512.png, icon-192-maskable.png, and icon-512-maskable.png.app-mobile.webp and app-desktop.webp (if you uploaded screenshots).Extract the ZIP archive and upload all the files to a directory on your web server. It is common practice to upload them to either:
/assets/icons/ or /static/favicons/). Ensure this directory matches the Path to files you set in the configuration form./). If you place them in the root, make sure to set the Path to files in the form to empty or /.Open head.html inside your editor. Copy all the listed tags and paste them directly into the <head> section of your website's main HTML layout or template file. For example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Website</title>
<!-- Paste the contents of head.html here -->
<link rel="icon" href="/assets/icons/favicon.ico" sizes="32x32">
<link rel="icon" href="/assets/icons/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png">
<link rel="manifest" href="/assets/icons/manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="My App">
<meta name="application-name" content="My App">
<meta name="theme-color" content="#0092b8">
</head>
<body>
...
</body>
</html>
Even if you configure the HTML tags to point to a subfolder like /assets/icons/favicon.ico, some legacy browsers, command-line tools, and search engine crawlers will automatically request /favicon.ico from the root of your domain.
To prevent your server logs from filling up with 404 "Not Found" errors, it is highly recommended to upload a duplicate copy of favicon.ico directly to your server's root folder (e.g. https://yourdomain.com/favicon.ico) regardless of where your main icon set is located.
After deploying your files and HTML head changes, you can verify everything is working correctly using your browser's developer tools: