-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path02-tables.html
120 lines (82 loc) · 1.18 KB
/
02-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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tables</title>
<style>
table{
width: 100%;
}
table, th, td {
border: 1px solid black;
}
td {
text-align: right;
}
th, td {
padding: 10px;
}
</style>
</head>
<body>
<h1>Tables</h1>
<h2>Table with thead, tbody, tfoot and caption</h2>
<table>
<caption>Table caption</caption>
<thead>
<tr>
<th>Month</th>
<th>Expenses</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Total</td>
<td>$180</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>
<h2>Simple Table</h2>
<table>
<tr>
<th>Course</th>
<th>Student</th>
</tr>
<tr>
<td>4IZ228</td>
<td>5XY123</td>
</tr>
<tr>
<td>6YY293</td>
<td>7EEII</td>
</tr>
</table>
<h2>Table with colspan and rowspan</h2>
<table>
<tr>
<th>Course</th>
<th>Student</th>
</tr>
<tr>
<td colspan="2">4IZ228</td>
</tr>
<tr>
<td rowspan="2">4IZ228</td>
<td>5XY123</td>
</tr>
<tr>
<td>7EEII</td>
</tr>
</table>
</body>
</html>