-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpass.html
More file actions
56 lines (41 loc) · 975 Bytes
/
Copy pathpass.html
File metadata and controls
56 lines (41 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<link rel="stylesheet" href="pass.css">
<title>Pass | ACME Corp</title>
<header>
<h1> Pass </h1>
<nav>
<ul>
<li><a href="pass.html">Pass</a>
<li><a href="fail.html">Fail</a>
</ul>
</nav>
</header>
<main>
<p>This page contains some examples of accessibility passes.</p>
<p>
<img src="example" alt="Example">
</p>
<p>
<img src="#" class="decorative" alt="">
<!-- <img src="#" class="decorative" alt=""> -->
</p>
<p>
<a href="#">Hello world!</a>
</p>
<form>
<p>
<label>
First name <i>required</i>
<input name="name" aria-required="true" aria-describedby="error">
</label>
<output name="error" id="error"></output>
</p>
<p>
<button>Submit</button>
</p>
</form>
</main>
<script src="script.js"></script>
</html>