Favicons and Site Identity: Why BearAudit Checks for an Icon
A missing favicon or app icon gets a warning in BearAudit. Learn why it matters for branding, browser tabs, and search results and how to add one to your site.
BearAudit looks for a favicon (or app icon) on every page. If we don't find a <link rel="icon"> or similar, we report a warning in the icon category. It's a small fix with real impact.
Where icons show up
- Browser tabs — Users see your icon next to the title. Missing = generic or blank, which looks unfinished.
- Bookmarks — Saved pages keep the favicon. Helps users recognize your site.
- Search results — Google can show a favicon next to your result on desktop and mobile. Branding and trust.
- Mobile home screen — When users "Add to home screen," the icon is used.
apple-touch-iconand similar link tags cover this.
What BearAudit checks
We scan the page's <head> for <link> elements with rel="icon" or rel values that include "icon" (e.g. "apple-touch-icon"). If at least one has a non-empty href, we don't flag the page. Otherwise you get the warning.
How to fix
- Add a favicon — Create a small image (e.g. 32×32 or 48×48). Add
<link rel="icon" href="/favicon.ico">or point to a PNG/SVG. - Use absolute URLs if needed — Some contexts require a full URL. Prefer consistent use across the site.
- Apple touch icon — For better mobile experience, add
rel="apple-touch-icon"with a larger asset (e.g. 180×180).
One set of tags in your main template usually covers all pages. Re-crawl after adding; the icon warning will clear.
Explore more technical SEO terms in our Glossary.