From 0271dab0835bb9d0950ce85e97e79ec08ea24075 Mon Sep 17 00:00:00 2001 From: Rui Saraiva Date: Fri, 10 Apr 2020 13:56:04 +0100 Subject: [PATCH] docs: add favicon sizes and formats --- README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) 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 + + + + + + + + + + + + + + + + + + +```