HTML5セマンティクス-セクションの記事タイトルのH1またはH2
最も重要なタイトルを設定する方法として、ページの複数の領域でH1タグを使用することが意味的に適切であると考えることができるのは私の理解です(Dive into HTML5:http : //goo.gl/9zliDのこの章から)その特定のコンテンツのために。 この方法論を使用していて、「記事」のH1を割り当てたセクションがある場合、H1またはH2を使用してそのセクションの記事のタイトルを定義する必要がありますか? 記事のタイトルは記事の最も重要な見出しであるだけでなく、SECTIONのタイトルの「子供」でもあるので、これは少し混乱します。 コード例: <section class="article-list"> <header> <h1>Articles</h1> </header> <article> <header> <h2>Article Title</h2> <time datetime="201-02-01">Today</time> </header> <p>Article text...</p> </article> <article> <header> <h2>Article Title</h2> <time datetime="2011-01-31">Yesterday</time> </header> <p>Article text...</p> </article> <article> <header> <h2>Article Title</h2> <time datetime="2011-01-30">The Day Before Yesterday</time> </header> <p>Article text...</p> </article> </section>