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

Go to download

Analyze HTML (also within PHP/Ruby/etc. templates) and JSP/JSF code.

The 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>                                                                  <!-- Non-Compliant -->
  <title>...<title>
</head>

Compliant Solution

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy