-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextraexampleARIA.html
53 lines (51 loc) · 1.69 KB
/
extraexampleARIA.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Another Example for ARIA9</title>
</head>
<body>
<h1>New Journal Entry</h1>
<div><label for="date">Date </label><input type="text" id="date" aria-describedby="format" /></div>
<span id="format">Format dd/mm/yyyy</span>
<p></p>
<table>
<tr>
<th id="type">Type</th>
<th id="description">Description</th>
<th id="reference">Reference</th>
<th id="spent">Spent</th>
<th id="received">Received</th>
<th id="refund">Refund</th>
</tr>
<tr>
<td>
<select aria-labelledby="type">
<option value="card">Card</option>
<option value="cash">Cash</option>
<option value="cheque">Cheque</option>
</select>
</td>
<td><input type="text" aria-labelledby="description" /></td>
<td><input type="text" aria-labelledby="reference" /></td>
<td><input type="text" aria-labelledby="spent" /></td>
<td><input type="text" aria-labelledby="received" /></td>
<td><input type="checkbox" aria-labelledby="refund g1" /><span id="g1">Given</label></td>
</tr>
<tr>
<td>
<select aria-labelledby="type">
<option value="card">Card</option>
<option value="cash">Cash</option>
<option value="cheque">Cheque</option>
</select>
</td>
<td><input type="text" aria-labelledby="description" /></td>
<td><input type="text" aria-labelledby="reference" /></td>
<td><input type="text" aria-labelledby="spent" /></td>
<td><input type="text" aria-labelledby="received" /></td>
<td><input type="checkbox" aria-labelledby="refund g2" /><span id="g2">Given</span></td>
</tr>
</table>
</body>
</html>