タイトルとその内容を複数個並べるときに使用するHTMLタグを比較する

(1) dl, dt, dd 要素を使う場合

Code
<p><em>Cats</em> are cute animals.</p>
Demo

Cats are cute animals.

参考

(2) 見出しタグと div タグをそのまま使う場合

Code

<p><em>Cats</em> are cute animals.</p>

Demo

Cats are cute animals.

参考

(3) section タグを使う場合

Code

<p><em>Cats</em> are cute animals.</p>

Demo

Cats are cute animals.

参考