Heading hierarchy (heading)
Use semantic heading tags or ARIA heading roles in a logical hierarchy
Missing heading tag:
This heading is using <div> instead of <h1>:
Welcome to our website
The (DOM/programmatic) structure of the above example looks like this:
<div class="h1">
Welcome to our website
</div>