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: 2.6.0.1053
Show newest version

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 - 2024 Weber Informatics LLC | Privacy Policy