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

There is a newer version: 3.19.0.5695
Show 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