Properly nesting structureStructuring footers

Il existait anciennement le tag <hgroup>.

Certains regroupements font sens :

<article>
  <h3>super titre</h3>
  <p>par José</p>
  <p>Le 16 décembre 2015</p>
  <p>Mon super article</p>
</article>

Devient :

<article>
  <header>
    <h3>super titre</h3>
    <p>par José</p>
    <p>Le 16 décembre 2015</p>
  <header>
  <p>Mon super article</p>
</article>