
org.sonar.l10n.web.rules.Web.PageWithoutFaviconCheck.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-web-plugin Show documentation
Show all versions of sonar-web-plugin Show documentation
Enables scanning of HTML, and JSP/JSF files.
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> <!-- 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