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

adding a11y question for #172 #177

Merged
merged 1 commit into from
Oct 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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) -->