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

Commit

Permalink
Merge pull request #177 from dafrog/a11y-question
Browse files Browse the repository at this point in the history
adding a11y question for #172
  • Loading branch information
fejes713 committed Oct 3, 2019
2 parents 3938930 + c7c138b commit e74a7bd
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 e74a7bd

Please sign in to comment.