All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.PageWithoutFaviconCheck.html Maven / Gradle / Ivy

The newest version!

Why is this an issue?

Favicons are shown for example in the browser’s address bar, bookmark list, or tabs.

They enable users to quickly identify and recognize websites.

Noncompliant code example

<head>                                                                  <!-- Noncompliant -->
  <title>...<title>
</head>

Compliant solution

<head>
  <title>...<title>
  <link rel="shortcut icon" href="http://example.com/myicon.ico" />
</head>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy