-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtables.html
42 lines (42 loc) · 1.14 KB
/
tables.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
<!DOCTYPE html>
<html>
<head>
<title>Webdev 101</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<h1>Tables</h1>
<p>Here is a table in HTML:</p>
<table>
<thead>
<tr>
<th>Module</th>
<th>Completed</th>
</tr>
</thead>
<tbody>
<tr>
<td>5. Colours, colour blindness and data visualisation</td>
<td><input type="checkbox" checked></td>
</tr>
<tr>
<td>6. Making data visualisations understandable</td>
<td><input type="checkbox" checked></td>
</tr>
<tr>
<td>7. HTML 101</td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td>8. Accessible HTML</td>
<td><input type="checkbox"></td>
</tr>
</tbody>
</table>
</body>
</html>