Skip to main content

HTML Guide

Free site validation

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

Saw “=” when expecting an attribute name. Probable cause: Attribute name missing.

Attributes for HTML elements must be defined like name="value". The name may be missing before the =.

Some examples:

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

<!-- Missing space before the attribute -->
<pname "value"></p>

Related W3C validator issues