クリエイター:コーディング備忘録ブログ

コーディング

HTML5で新しく定義された「section要素」

<h1>test</h1>
<p>タイトル</p>
<section> 
 <h2>タイトル</h2>
 <p>テキストテキスト</p>
 <section> 
  <h3>タイトル</h3>
  <p>テキストテキスト</p>
 </section>
 <section>
  <h3>タイトル</h3>
  <p>テキストテキスト</p>
 </section>
</section>

各セクションごとに見出し要素を作ることで章や節を表せています。

コメント

この記事へのコメントはありません。

RELATED

PAGE TOP