Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
adding a11y question for #172
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Li committed Oct 2, 2019
1 parent 3938930 commit fbe2c7f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions questions/landmark-roles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
### What are landmark roles and how can they be useful?

#### Answer

Landmark roles is a way to identify different sections of a page like the main content or a navigation region. The Landmarks helps assistive technology users to navigate a page, allowing them skip over areas of it.

For example,
```html
<div id="header" role="banner">Header of the Page</div>
<div id="content" role="main">Main Content Goes Here</div>
```

#### Good to hear

- Identify sections of a page
- Assist users in navigating a page

##### Additional links

* [ARIA Landmark Roles](https://www.washington.edu/accessibility/web/landmarks/)
* [Using ARIA landmarks to identify regions of a page](https://www.w3.org/WAI/GL/wiki/Using_ARIA_landmarks_to_identify_regions_of_a_page)

<!-- tags: (accessibility) -->

<!-- expertise: (1) -->

0 comments on commit fbe2c7f

Please sign in to comment.