Seoxpert.io
lowBest Practices

Pages Missing Favicon

Some pages do not declare a favicon, which can reduce brand visibility and trust.

By Seoxpert Editorial · Published · Updated

Why it matters

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.

Impact

Missing favicons can decrease brand recognition and user trust.

How it's detected

An automated crawler checks for the presence of <link rel="icon"> or equivalent favicon declarations in the <head> of each page.

Common causes

  • No favicon link tag present in the <head> section
  • Favicon file missing from the server
  • Incorrect path or filename in the favicon link
  • Favicon only declared on some pages, not all
  • Apple touch icon not specified for iOS devices

How to fix it

Add a favicon link in the <head> of every page, such as <link rel="icon" type="image/png" href="/favicon.png">. For better device compatibility, also include an Apple touch icon: <link rel="apple-touch-icon" href="/apple-touch-icon.png">. Ensure the referenced files exist on your server at the specified paths.

Code examples

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>

FAQ

Do I need a favicon on every page?

Yes, each page should declare a favicon in the <head> to ensure consistent branding across your site.

What happens if I only add a favicon to my homepage?

Other pages without a favicon declaration may not display your icon in browser tabs or bookmarks.

Is the Apple touch icon necessary?

While not strictly required, adding an Apple touch icon improves your site's appearance when saved to iOS home screens.

Can I use formats other than PNG for my favicon?

Yes, ICO and SVG are also supported by most browsers, but PNG is widely compatible.

Found this issue on your site?

Run a scan to see if Pages Missing Favicon affects your pages.

Scan my website →