Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-tripp-siteimprove committed Jun 27, 2023
1 parent b4826d7 commit 23e94a4
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions navigating-by-headings-with-a-screen-reader---and-r78.html
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>

0 comments on commit 23e94a4

Please sign in to comment.