-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
40 lines (39 loc) · 912 Bytes
/
table.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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Table</title>
<style>
table{
border: 1px solid black;
border-collapse: collapse;
}
td, th{
border: 1px solid black;
padding: 5px;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>ocean</th>
<th>Average depth</th>
<th>Maximum depth</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pacific ocean</td>
<td>4,280 m</td>
<td>10,911 m</td>
</tr>
<tr>
<td>Atlantic ocean</td>
<td>3,646 m</td>
<td>8,486 m</td>
</tr>
</tbody>
</table>
</body>
</html>