# How to add a skip link

> A skip link lets keyboard users jump past the menu to the main content. It is the first focusable element and can stay hidden until focused.

Accessibility · HTML version: https://getreport.app/learn/skip-links

## Skip to content link

Passing looks like: A skip link leads to the main content.

**Why it matters.** Keyboard users tab through every menu item on every page before they reach the content. A "Skip to content" link, visible on focus, takes them there in one keystroke.

**How to fix it.**

1. Add <a href="#main" class="skip-link">Skip to content</a> as the first element in <body> and give <main> the id "main".
2. Hide it off-screen until it receives focus; do not use display none, which removes it from the tab order.

Check your own page: https://getreport.app/
