Skip to main content

HTML Guide

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