Documentation
Learn how to implement favicons in your website
Getting Started
Our Favicon Generator helps you create all the necessary favicon files and implementation code for your website. Follow these steps to get started: 1. Upload your image (PNG, JPEG, GIF, WebP, or SVG) 2. Enter your website information 3. Preview and customize the favicons 4. Generate and download the favicon package
Supported Platforms
The generated favicon package includes icons for: - Web browsers (Chrome, Firefox, Safari, Edge) - Mobile devices (iOS, Android) - Windows Start Menu and taskbar - macOS Dock and touch bar
File Formats
The package includes the following files: - favicon.ico (16x16, 32x32) - favicon-16x16.png - favicon-32x32.png - apple-touch-icon.png (180x180) - android-chrome-192x192.png - android-chrome-512x512.png - site.webmanifest
Preview Example
Browser Preview
Google Search Result
Android Previews
Home Screen
App Switcher
Splash Screen
Implementation Example
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#2A9B48">Implementation Steps:
- Copy the code above to your HTML file's
<head>section - Create a
site.webmanifestfile in your public directory - Copy the manifest JSON to the webmanifest file
- Place all favicon files in your public directory
- Test your website across different browsers and devices
Best Practices
Design Tips
- Keep the design simple and recognizable
- Use bold shapes and high contrast
- Test at different sizes
- Consider both light and dark modes
Technical Tips
- Use vector images when possible
- Optimize PNG files
- Include all recommended sizes
- Test across different browsers
Implementation Tips
- Place files in the root directory
- Use correct meta tags
- Include web manifest
- Verify cache settings
Ready to create your favicon?
Use our generator to create a complete favicon package for your website
Get Started