Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Latest commit

 

History

History
31 lines (21 loc) · 515 Bytes

11-define-landmarks.md

File metadata and controls

31 lines (21 loc) · 515 Bytes

11. Define Landmark Regions of a web page using ARIA roles

📹 Video

Most common landmark regions:

  1. Header:
<div role='banner'></div>
  1. Buttons responsible for navigation should be wrapped in a <div> with its own role:
<div role="navigation">
  <button></button>
</div>
  1. Main content:
<div role="main"></div>
  1. Footer:
<div role="contentinfo"></div>