質問が一般的すぎないことを願っていますが、アドバイスが必要です。
次の例のうち、どれが正しいと思いますか?
ナンバー1
<article>
<section>
<header>
<h1>Title</h1>
</header>
<p>Content</p>
<h2>Title 2</h2>
<p>Content</p>
<footer>
<p>footer</p>
</footer>
</section>
</article>
2番
<article>
<section>
<header>
<h1>Title</h1>
</header>
<p>Content</p>
<header>
<h2>Title 2</h2>
</header>
<p>Content</p>
<footer>
<p>footer</p>
</footer>
</section>
</article>
ナンバー 3
<article>
<section>
<header>
<h1>Title</h1>
</header>
<p>Content</p>
<footer>
<p>footer</p>
</footer>
</section>
<section>
<header>
<h2>Title</h2>
</header>
<p>Content</p>
<footer>
<p>footer</p>
</footer>
</section>
</article>
私は例番号 1 を好みますが、完全にはわかりません :/