가장 중요한 제목을 설정하는 방법으로 페이지의 여러 영역에서 H1 태그를 사용하는 것이 의미 론적으로 적절하다고 간주 될 수 있습니다 ( Dive의 HTML5 : http://goo.gl/9zliD ). 특정 콘텐츠에 대해
이 방법론을 사용 중이고 'Articles'에 H1을 할당 한 SECTION이있는 경우 H1 또는 H2를 사용하여 해당 섹션의 기사 제목을 정의해야합니까? 기사 제목이 기사의 가장 중요한 제목이지만 섹션 제목의 '자녀'이기 때문에 이것은 약간 혼란 스럽습니다.
예제 코드 :
<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>