-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwcag-2-2--f80--example-1.html
65 lines (42 loc) · 1.12 KB
/
wcag-2-2--f80--example-1.html
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
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>x</title>
<style>
h1 { font-size: 2em; }
p, label { font-size: 1em; }
input {font-size: 12pt;}
</style>
<script>
window.addEventListener("load", function(event) {
});
</script>
</head>
<body>
<main>
<a href="https://www.w3.org/WAI/WCAG22/Techniques/failures/F80#example-1-a-contact-form">Source</a>
<h1>Contact Us</h1>
<p>Please provide us with your details and we will contact you as soon as we can.
Note that all of the form fields are required.</p>
<div>
<label for="fname">First Name</label>
<input type="text" name="fname" id="fname">
</div>
<div>
<label for="lname">Last Name</label>
<input type="text" name="lname" id="lname">
</div>
<div>
<label for="phone">Telephone</label>
<input type="text" name="phone" id="phone">
</div>
<div>
<label for="email">Email</label>
<input type="text" name="email" id="email">
</div>
<input type="submit" name="Submit" value="Submit" id="Submit">
</main>
</body>
</html>