Skip to content

HTML Checking for Large Sites

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

Attribute values for HTML elements must be enclosed within quotes. Check for attributes whose values are missing quotes.

Example:

<!-- These are invalid -->
<div class=important></div>
<div class=important"></div>

<!-- This is valid -->
<div class="important"></div>