Screen reader users dùng shortcut để nhảy qua headings (phím H trong NVDA/JAWS) — heading là cách chính để navigate page.
- Thứ tự phải liên tục (h1 → h2 → h3), không được nhảy cấp (h1 → h3).
- Mỗi page nên có đúng 1
<h1>là tiêu đề chính. - Google coi heading hierarchy là SEO signal.
- Lỗi phổ biến: dùng
<h3>vì thích cỡ chữ — hãy dùng CSS để style kích thước, không dùng heading sai cấp.<h1>không cần là element đầu tiên nhìn thấy nhưng phải là quan trọng nhất về nội dung.
Screen reader users use shortcuts to navigate by headings (H key in NVDA/JAWS) — headings are the primary way to navigate a page.
- The hierarchy must be sequential (h1 → h2 → h3), with no skipped levels (e.g., h1 → h3).
- Each page should have exactly one
<h1>as the primary title. - Google treats heading hierarchy as an SEO signal.
- Common mistake: using
<h3>just because you like the font size — use CSS for sizing, never misuse heading levels.<h1>doesn't have to be the first visible element, but it must be the most important one content-wise.