มันเป็นความเข้าใจของฉัน (จากตอนนี้ของ Dive เป็น HTML5: http://goo.gl/9zliD ) ว่ามันมีความเหมาะสมทาง semantically ในการใช้แท็ก H1 ในหลาย ๆ พื้นที่ของหน้าซึ่งเป็นวิธีการตั้งชื่อที่สำคัญที่สุด สำหรับเนื้อหานั้น ๆ
หากฉันใช้วิธีการนี้และฉันมีมาตราที่ฉันได้กำหนด H1 ของ 'บทความ' ฉันควรใช้ 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>