I have <article>
, <section>
, <header>
and everything seems fine, but the HTML Validator returns error:
Warning: Article lacks heading. Consider using h2-h6 elements to add identifying headings to all articles.
Can you please advise me where is the problem?
<div class="item column-1" itemprop="blogPost" itemscope="" itemtype="http://schema.org/BlogPosting">
<article>
<section class="article-intro clearfix" itemprop="articleBody">
<header>
<h2>My header text</h2>
</header>
<p>My paragraph text</p>
<p>
<img src="/images/myimage.jpg" alt="image alt">
</p>
</section>
</article>
</div>