-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.html
102 lines (99 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
width: 50px;
}
th {
text-align: left;
}
table#powers tr:nth-child(even) {
background-color: #eee;
}
table#powers tr:nth-child(odd) {
background-color:#fff;
}
table#powers th {
background-color: black;
color: white;
text-align: center;
}
table#powers td {
text-align: center;
}
</style>
</head>
<body>
<table style="width:70%">
<caption>Personal Information</caption>
<tr>
<th>Name</th>
<th>Surname</th>
<th>Age</th>
<th>Country</th>
<th colspan="2">Grades</th>
</tr>
<tr>
<td>Julia</td>
<td>Smith</td>
<td>18</td>
<td>Russia</td>
<td>2.1</td>
<td>2.1</td>
</tr>
<tr>
<td>Martha</td>
<td>Jones</td>
<td>33</td>
<td>England</td>
<td>1st</td>
<td>2.1</td>
</tr>
<tr>
<td>Charlene</td>
<td>Chau</td>
<td>80</td>
<td>Hong Kong</td>
<td>2.2</td>
<td>3rd</td>
</tr>
</table>
<br>
<table id="powers">
<tr>
<th></th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
</tr>
<tr>
<td>2</td>
<td>4</td>
<td>8</td>
<td>16</td>
<td>32</td>
</tr>
<tr>
<td>3</td>
<td>9</td>
<td>27</td>
<td>81</td>
<td>273</td>
</tr>
<tr>
<td>4</td>
<td>16</td>
<td>64</td>
<td>256</td>
<td>1024</td>
</tr>
</table>
</body>
</html>