Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.

Use landmark regions correctly

Proper landmark regions (main, nav, footer) help users navigate the page more efficiently.

Utilities
Quick take
Typical fix time 10 min
  • Use HTML5 landmark elements like `<header>`, `<nav>`, `<main>`, and `<footer>`
  • Ensure each landmark appears only once where appropriate (e.g., one `<main>`)
  • Provide labels for multiple landmarks of the same type using `aria-label`
Why it matters: Landmark regions allow screen reader users to quickly identify and jump to major sections of a page, significantly improving navigation efficiency.

Rule Details

Landmark regions provide a way to identify the organization and structure of a web page. By using semantic HTML5 elements, you enable assistive technologies to offer quick navigation to these sections.

Code Example

<header>
  <h1>Site Title</h1>
  <nav aria-label="Main navigation">
    <ul>
      <li><a href="/">Home</a></li>
      <li><a href="/about">About</a></li>
    </ul>
  </nav>
</header>
 
<main>
  <article>
    <h2>Article Title</h2>
    <p>Main content goes here...</p>
  </article>
</main>
 
<footer>
  <p>&copy; 2024 Frontend Checklist</p>
</footer>

Why It Matters

  • Quick Navigation: Screen reader users can jump directly to specific sections (e.g., bypass navigation to get to the main content).
  • Context Awareness: Landmarks provide immediate context about where the user is within the page structure.
  • Consistency: Using standard semantic elements ensures a predictable experience across different websites and browsers.
  • SEO Benefits: Search engines use semantic landmarks to better understand the page's content structure.

Exceptions

  • Evaluate the rendered experience before treating a static-code smell as a blocker; interaction timing, browser behavior, and assistive technology output often determine severity.
  • Not every secondary accessibility issue deserves equal weight; prioritize the issue that most directly blocks perception, operation, or understanding.
  • Avoid adding redundant markup or ARIA solely to satisfy a rule when a simpler semantic implementation would eliminate the issue entirely.

Standards

  • Align the implementation with W3C WAI: WCAG Overview and verify the rendered experience, not only the source code.
  • Align the implementation with MDN: Accessibility and verify the rendered experience, not only the source code.

Verification

Automated Checks

  • Inspect the browser accessibility tree or accessibility pane for the relevant element, role, or accessible name.
  • Run an automated accessibility checker such as axe or Lighthouse where applicable.

Manual Checks

  • Test the affected UI with keyboard-only navigation and confirm the rule holds in the rendered experience.
  • Re-test one representative user flow with a screen reader if this rule affects a key interaction.

Use with AI

Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.

Check

Verify implementation

Verify that the page uses appropriate HTML5 landmark elements and that they are correctly structured.

Fix

Auto-fix issues

Replace generic `<div>` containers with semantic landmark elements like `<header>`, `<nav>`, `<main>`, and `<footer>`.

Explain

Learn more

Explain how landmark regions assist assistive technology users in navigating complex page layouts.

Review

Code review

Review the rendered markup and interactive states that affect Use landmark regions correctly. Flag exact elements, roles, labels, focus behavior, or keyboard interactions that violate the rule, and note how to verify the fix with browser accessibility tooling or assistive tech.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

axe DevTools
deque.comTool

Rules that often go hand-in-hand with this one.

Use exactly one main landmark

Each page must have one and only one main landmark.

Accessibility
Provide accessible names for tree items

All elements with role="treeitem" must have a descriptive accessible name so screen reader users can navigate hierarchical tree widgets.

Accessibility
Provide visible custom focus indicators

Ensure all interactive elements have a clearly visible focus indicator for keyboard navigation — never just remove the default outline without providing a better alternative.

CSS
Provide titles for iframes and frames

iframes and frames must have a title attribute to describe their content.

Accessibility

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385