Skip to content

HTML Checking for Large Sites

Rocket Validator integrates the W3C Validator HTML checker into an automated web crawler.

Attributes for HTML elements must be defined like name="value". A common issue is missing the =, or repeating the " like in these examples:

<!-- Missing equal sign -->
<p name "value"></p>

<!-- Repeated quotes -->
<p name="value""></p>

Related W3C validator issues