-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
50 lines (50 loc) · 1.27 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
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<style>
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 3px double black;
padding: 8px;
text-align: left;
}
tr:nth-child(even) {
background-color: goldenrod;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tables</title>
</head>
<body>
<table>
<tr><th>Name</th></tr>
<tr><th>Email</th></tr>
<tr><th>Phone number</th></tr>
<tr><th>Location</th></tr>
<tr><th>Gender</th></tr>
<tr><th>Address</th></tr>
<tr>
<td>
<h5>Alvin</h5>
<h5>Marsha</h5>
<h5>Kevin</h5>
<h5>Hannah</h5>
<h5>Raphael</h5>
<h5>Adrian</h5>
</td>
<td>
<h5>[email protected]</h5>
<h5>[email protected]</h5>
<h5>[email protected]</h5>
<h5>[email protected]</h5>
<h5>[email protected]</h5>
<h5>[email protected]</h5>
</td>
</tr>
</table>
</body>
</html>