Top 10 HTML Errors
Web developers worldwide have found 318 million HTML issues on 10 million checked web pages.
Here are the most common issues detected by Rocket Validator.
Last update: Friday, November 22, 2024
1. Duplicate ID “X”. 35.70%
The id
attribute is used to identify a single element within a document, and is required to be unique. Check the document for repeated IDs.
2. Attribute “X” not allowed on element “Y” at this point. 15.42%
An invalid attribute has been found on an element. Check the affected tag to ensure attributes are well-formed, and if they are you can consider using custom data attributes.
3. No space between attributes. 12.67%
Attributes in HTML elements need to be separated by space.
4. Element “X” not allowed as child of element “Y” in this context. 12.44%
The element X is not allowed as a child element of Y. For example, a <ul>
element cannot have a <div>
child element.
5. Malformed byte sequence. 8.61%
The document could not be properly parsed due to malformed characters. Check the document encoding.
6. An “img” element must have an “alt” attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images. 4.66%
<img>
tags, used to include images on a document, require an alt
attribute to describe the contents of the image. This is essential for users that cannot see the image (like screen reader users), or as an alternate text when the image cannot be displayed.
7. Stray end tag “X”. 4.10%
An end tag for X has been found that does not correspond to a previous open tag. This usually happens when you close the same tag twice.
8. Forbidden code point X. 2.45%
A character has been found in the document that is not allowed in the charset encoding being used.
9. End tag X seen, but there were open elements. 2.14%
Your HTML markup contains an end tag for X, but there are nested open elements that need to be closed first. For example, <li><span>example</li>
is invalid because you need to close the <span>
tag before you close the <li>
. This would be valid: <li><span>example</span></li>
.
10. The “X” attribute on the “Y” element is obsolete. Use CSS instead. 1.83%
You’re using an attribute X that is no longer valid for element Y, but you can use CSS to achieve the same effect.
Ready to validate your sites?
Start your trial today.