-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
43 lines (41 loc) · 1020 Bytes
/
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
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="tables.css">
<title>Table Practice</title>
</head>
<body>
<p>Wait... I thought we didn't use tables anynmore?</p>
<table>
<caption>Practice Table</caption>
<thead>
<tr>
<th>Header1</th>
<th>Header2</th>
<th>Header3</th>
</tr>
</thead>
<tbody>
<tr>
<td>col 1 cell 1</td>
<td>col 2 cell 2</td>
<td>col 3 cell 3</td>
</tr>
<tr>
<td>col 1 cell 1</td>
<td>col 2 cell 2</td>
<td>col 3 cell 3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>footer1</td>
<td>footer2</td>
<td>footer3</td>
</tr>
</tfoot>
</table>
</body>
</html>