When validated my HTML document is giving the following problem
Section lacks heading. Consider using h2-h6 elements
But I do not need this, it's really unnecessary for the purpose of my site (titles only in articles, blog style). Can I ignore this or can it hurt me? Being forced to hide that title in CSS?
Example of my code
<header>
<h1></h1> --
<nav>
</nav>
</header>
<main>
<section>
<article>
<h2></h2> --
</article>
</section>
</main>