3
When validating my HTML document this giving the following problem
Section Lacks Heading. Consider using H2-H6 Elements
But I don’t need it, 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 this title in CSS?
Example of my code
<header>
<h1></h1> --
<nav>
</nav>
</header>
<main>
<section>
<article>
<h2></h2> --
</article>
</section>
</main>
I understand, mt obg by the answer
– Quero Aprender .. Desculpe