diff --git a/README.md b/README.md index 10cc57b..f9b811b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,56 @@ # favicon-tool + Favicon generator tool + +## Browser favicon formats supported + +| | IE | Edge | Firefox | Chrome | Safari | iOS Safari | Chrome Android | +| --- | --- | ---- | ------- | ------ | ------ | ---------- | -------------- | +| ico | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | +| png | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | +| svg | ❌ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | ✅ | + +## Favicon recommended sizes + +| | apple-touch-icon | icon | msapplication | +| ------- | ---------------- | ---- | ------------- | +| 57x57 | ✅ | | | +| 60x60 | ✅ | | | +| 72x72 | ✅ | | | +| 76x76 | ✅ | | | +| 114x114 | ✅ | | | +| 120x120 | ✅ | | | +| 144x144 | ✅ | | ✅ | +| 152x152 | ✅ | | | +| 180x180 | ✅ | | | +| 16x16 | | ✅ | | +| 32x32 | | ✅ | | +| 96x96 | | ✅ | | +| 192x192 | | ✅ | | +| 70x70 | | | ✅ | +| 150x150 | | | ✅ | +| 310x150 | | | ✅ | +| 310x310 | | | ✅ | + +## HTML tags to add for all favicon sizes + +```html + + + + + + + + + + + + + + + + + + +```