-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4826d7
commit 23e94a4
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
navigating-by-headings-with-a-screen-reader---and-r78.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>x</title> | ||
|
||
<style> | ||
p { line-height: 1.5; } | ||
</style> | ||
|
||
</head> | ||
|
||
<body> | ||
<main> | ||
|
||
|
||
<a href="#id_h1">Skip to main content</a> | ||
<h1 id="id_h1">heading</h1> | ||
|
||
|
||
<h2>heading followed by some text</h2> | ||
some text | ||
|
||
<h2>heading followed by a text button</h2> | ||
<button>x</button> | ||
|
||
<h2>heading followed by a broken image with an alt attribute</h2> | ||
<img alt="x" src="broken.png"> | ||
|
||
<h2>heading followed by a broken image without an alt attribute</h2> | ||
<img src="broken.png"> | ||
|
||
<h2>heading followed by a broken image with an empty alt attribute</h2> | ||
<img alt="" src="broken.png"> | ||
|
||
<h2>heading followed by a link</h2> | ||
<a href="#">link</a> | ||
|
||
<h2>heading followed by an input text field</h2> | ||
<label>Input:<input></label> | ||
|
||
|
||
</main> | ||
|
||
</body> | ||
|
||
</html> |