Landmarks (header/nav/main)

A short, practical UI accessibility note for games and web UIs. No tracking.

Try the micro-demo: landmarks-demo.html

It compares “no landmarks” vs header/nav/main/aside/footer plus labeled navigation.

What goes wrong

Why it matters

Checklist (minimal)

Example (minimal skeleton):

<header>...</header>

<nav aria-label="Primary">
  ...
</nav>

<main>
  <h1>Page title</h1>
  ...
</main>

<footer>...</footer>

Tip: combine this with a skip link for keyboard users.