Place the following at the top of your html page:

Skip to content

This way a screen reader will jump reading all your navigation and will just skip this and read your main content. It’s also important to hide this skip to content technique using CSS.

.accessaid {
position: absolute;
height: 0;
overflow:hidden;
}

This means that if CSS is turned off then the ‘skip’ link will appear on screen.

Skipping navigation and skip to content