Ciao,
Il validatore html mi segnala un warning per la mancanza di un titolo H all'interno del tag <article>.
In realtà il titolo c'è la non è all'inizio del tag ed inserito in sotto tag <section>, con questa struttura:

codice HTML:
<article class="home-news home-news-grid">
  <figure class="home-news-image">
    <img src="" alt="">
  </figure>
  <section class="home-news-body">
    <p>
            <a class="home-news-cat" href="">Categoria</a><br>
            <span class="home-news-date">Data</span>
        </p>
    <a class="color-inherit" href="">
            <h3>Titolo avviso</h3>
            <p>Testo avviso</p>
    </a>
  </section>
</article>
Posso tranquillamente ignorare il warning oppure dovrei rivedere questa struttura?