forked from alphagov/accessibility-tool-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables-table-with-some-empty-cells.html
56 lines (56 loc) · 1.16 KB
/
tables-table-with-some-empty-cells.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Accessibility tools audit test - Table with some empty cells - GDS accessibility team</title>
<script src="../assets/javascript/jquery-1.12.0.min.js"></script>
<script src="../assets/javascript/main.js"></script>
<link rel="stylesheet" href="../assets/stylesheets/tests.css" />
</head>
<body>
<h1>Table with some empty cells</h1>
<main>
<table>
<caption>Bills before Parliament 2016-17</caption>
<thead>
<tr>
<th>
Current House
</th>
<th>
Bill title
</th>
<th>
Last updated
</th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td>A</td>
<td> </td>
</tr>
<tr>
<td>
Lords
</td>
<td>
Abortion (Disability Equality) Bill [HL]
</td>
<td>26.05.2016</td>
</tr>
<tr>
<td>
Lords
</td>
<td>
Access to Palliative Care Bill [HL]
</td>
<td>10.06.2016</td>
</tr>
</tbody>
</table>
</main>
</body>
</html>