-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbank tables.html
More file actions
100 lines (81 loc) · 1.13 KB
/
bank tables.html
File metadata and controls
100 lines (81 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Advanced Bank Table</title>
<style>
body {
font-family: Arial, sans-serif;
}
table {
border-collapse: collapse;
width: 70%;
margin: 20px auto;
}
caption {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}
th, td {
border: 1px solid #333;
padding: 10px;
text-align: right;
}
th {
background-color: #2c3e50;
color: white;
}
td:first-child, th:first-child {
text-align: left;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tfoot {
font-weight: bold;
background-color: #dfe6e9;
}
</style>
</head>
<body>
<table>
<caption>Bank Transactions Summary</caption>
<thead>
<tr>
<th>Month</th>
<th>Withdrawn ($)</th>
<th>Credit ($)</th>
<th>Balance ($)</th>
</tr>
</thead>
<tbody>
<tr>
<td>January</td>
<td>250.00</td>
<td>660.50</td>
<td>410.50</td>
</tr>
<tr>
<td>February</td>
<td>135.55</td>
<td>895.20</td>
<td>1170.15</td>
</tr>
<tr>
<td>March</td>
<td>300.00</td>
<td>500.00</td>
<td>1370.15</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Total</td>
<td>685.55</td>
<td>2055.70</td>
<td>1370.15</td>
</tr>
</tfoot>
</table>
</body>
</html>