12. Heading is missing text

1.3.1

Missing heading incorrect example

Description: An empty heading occurs.

Context: HTML without any content can clutter the HTML making it difficult for readers to scan through it properly. It should either be filled with content or removed entirely.


<h3></h3>     

How to fix it: The tag for the heading is present, but there is no text in the tag.


<h3>Example Heading</h3>          

Techniques: H42