All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.S1829.html Maven / Gradle / Ivy

Go to download

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

The newest version!

It is considered best-practice to use relative URLs in web pages to prevent having to update the addresses if the web address in use changes. Moreover, if some absolute URLs are missed in such a process, it will obviously impact the user experience.

Noncompliant Code Example

  <img src="http://www.myserver.com/smiley.gif" alt="Smiley face" height="42" width="42" />

Compliant Solution

  <img src="smiley.gif" alt="Smiley face" height="42" width="42" />




© 2015 - 2024 Weber Informatics LLC | Privacy Policy