-
Notifications
You must be signed in to change notification settings - Fork 0
/
Table.html
39 lines (39 loc) · 942 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Table</title>
<style>
table{
border:silver 5px solid;
border-collapse: collapse;
}
td,th{
border: 2px solid black;
padding:6px;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Driver</th>
<th>Number</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lewis Hamilton</td>
<td>44</td>
<td>191</td>
</tr>
<tr>
<td>Valtteri Bottas</td>
<td>77</td>
<td>91</td>
</tr>
</tbody>
</table>
</body>
</html>