-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
56 lines (47 loc) · 957 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>my web page!</title>
<style>
table {
border: 2px solid black;
border-collapse: collapse;
width: 80%;
}
th,
td {
border: 1px solid black;
padding: 3px;
text-align: center;
}
th{
background: gray;
}
</style>
</head>
<body>
<h3>presidents</h3>
<table>
<tr>
<th>first name</th>
<th>last name</th>
<th>years in office</th>
</tr>
<tr>
<td>george</td>
<td>washington</td>
<td>1789-1797</td>
</tr>
<tr>
<td>john</td>
<td>adams</td>
<td>1797-1801</td>
</tr>
<tr>
<td>thomas</td>
<td>jefferson</td>
<td>1801-1809</td>
</tr>
</table>
</body>
</html>