> For the complete documentation index, see [llms.txt](https://ebay.gitbook.io/mindpatterns/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ebay.gitbook.io/mindpatterns/techniques/skip-to-main.md).

# Skip to Main Content

A means for keyboard users to bypass header navigation and search.

```markup
<!-- the skip to anchor is the first interactive element in the DOM -->
<a href=”#mainContent” class="clipped">Skip to Main</a>

<!-- the anchor target wraps your main content -->
<div id=”mainContent” role=”main”>
  ..
</div>
```

Please refer to the [Skip-To](/mindpatterns/navigation/skip-navigation.md) pattern for guidance regarding CSS and JavaScript.
