Similar to headings, landmarks help screen reader users bypass blocks of content, identify page structure and important information.
Note: Be consistent when defining landmarks across multiple pages
Note: Visit ARIA Landmarks Example to learn more about landmarks.
<!--Navigation HTML-->
<nav></nav>
<!--Navigation ARIA-->
<div role="navigation"></div>
<!--Header HTML-->
<header></header>
<!--Header ARIA-->
<div role="banner"></div>
<!--Main HTML-->
<main></main>
<!--Main ARIA-->
<div role="main"></div>
<!--Complimentary HTML-->
<aside></aside>
<!--Complimentary ARIA-->
<div role="complimentary"></div>
<!--Footer HTML-->
<footer></footer>
<!--Footer ARIA-->
<div role="contentinfo"></div>