Skip to main content

HTML Guide

Free site validation

Find out what web pages on your sites are affected by HTML issues.

No space between attributes.

Attributes in HTML elements need to be separated by space, in this example the first line is invalid and the second one is valid:

<a href="page.php"class="big">link</a>

<a href="page.php" class="big">link</a>

Related W3C validator issues