-
Notifications
You must be signed in to change notification settings - Fork 0
/
Long Tables.html
86 lines (77 loc) · 2 KB
/
Long 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Barebone</title>
<meta charset="utf-8">
</head>
<body>
<table>
<thead>
<tr>
<th>Date</th>
<th>Income</th>
<th>Expenditure</th>
</tr>
</thead>
<tbody>
<tr>
<th>1<sup>st</sup> January</th>
<td>250</td>
<td>36</td>
</tr>
<tr>
<th>2<sup>nd</sup> January</th>
<td>285</td>
<td>48</td>
</tr>
<tr>
<th>3<sup>rd</sup> January</th>
<td>218</td>
<td>15</td>
</tr>
<tr>
<th>4<sup>th</sup> January</th>
<td>180</td>
<td>14</td>
</tr>
<tr>
<th>5<sup>th</sup> January</th>
<td>122</td>
<td>05</td>
</tr>
<tr>
<th>6<sup>th</sup> January</th>
<td>100</td>
<td>69</td>
</tr>
<tr>
<th>7<sup>th</sup> January</th>
<td>120</td>
<td>06</td>
</tr>
<tr>
<th>8<sup>th</sup> January</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>9<sup>th</sup> January</th>
<td>129</td>
<td>64</td>
</tr>
<tr>
<th>10<sup>th</sup> January</th>
<td>345</td>
<td>12</td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td>1749</td>
<td>269</td>
</tr>
</tfoot>
</table>
</body>
</html>