Some pages do not declare a favicon, which can reduce brand visibility and trust.
By Seoxpert Editorial · Published · Updated
Favicons are displayed in browser tabs, bookmarks, and sometimes in search results. Without a favicon, your site may appear less professional and users may have difficulty recognizing your brand among multiple open tabs.
Missing favicons can decrease brand recognition and user trust.
An automated crawler checks for the presence of <link rel="icon"> or equivalent favicon declarations in the <head> of each page.
Missing favicon (problem)
<!DOCTYPE html>
<html>
<head>
<title>My Site</title>
<!-- No favicon link present -->
</head>
<body>
...
</body>
</html>Correct favicon and Apple touch icon (fix)
<!DOCTYPE html>
<html>
<head>
<title>My Site</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head>
<body>
...
</body>
</html>Yes, each page should declare a favicon in the <head> to ensure consistent branding across your site.
Other pages without a favicon declaration may not display your icon in browser tabs or bookmarks.
While not strictly required, adding an Apple touch icon improves your site's appearance when saved to iOS home screens.
Yes, ICO and SVG are also supported by most browsers, but PNG is widely compatible.
Run a scan to see if Pages Missing Favicon affects your pages.
Scan my website →