-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 820 Bytes
/
index.html
File metadata and controls
37 lines (34 loc) · 820 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Testing aria-labelledby: A simple table with text inputs - code | WCAG 2</title>
<style>
body{
background:#fff;
color:#000;
font:100% / 1.5 sans-serif;
}
</style>
</head>
<body>
<table cellpadding="0">
<tr>
<td></td>
<th id="tpayer">Taxpayer</th>
<th id="sp">Spouse</th>
</tr>
<tr>
<th id="gross">W2 Gross</th>
<td><input type="text" size="20" aria-labelledby="tpayer gross"></td>
<td><input type="text" size="20" aria-labelledby="sp gross"></td>
</tr>
<tr>
<th id="div">Dividends</th>
<td><input type="text" size="20" aria-labelledby="tpayer div"></td>
<td><input type="text" size="20" aria-labelledby="sp div"></td>
</tr>
</table>
</body>
</html>