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