-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatement.html
131 lines (122 loc) · 4.02 KB
/
statement.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
121
122
123
124
125
126
127
128
129
130
131
<div class="statement">
<div class="page-container pdf-only">
Page
<span class="page"></span>
of
<span class="pages"></span>
</div>
<div class="company-info">
<div class="logo-container">
<img
style="height: 1.25em"
src="https://app.useanvil.com/img/email-logo-black.png"
>
</div>
<div>123 Main Street</div>
<div>San Francisco CA, 94103</div>
<div>hello@useanvil.com</div>
<div>(415) 555-3231</div>
</div>
<h1>Account Statement</h1>
<div class="statement-info">
<div class="statement-info-item">
<div class="statement-info-item-label">Account</div>
<div class="statement-info-item-info">Alexis Williams - 123567744</div>
</div>
<div class="statement-info-item">
<div class="statement-info-item-label">Period</div>
<div class="statement-info-item-info">10/31/2024 - 11/29/2024</div>
</div>
</div>
<h2>Summary</h2>
<table class="table summary has-bottom-border">
<thead>
<tr>
<th class="summary-heading-period">Period</th>
<th class="summary-heading-amount">Opening Balance</th>
<th class="summary-heading-amount">Closing Balance</th>
</tr>
</thead>
<tbody>
<tr class="summary-row">
<td>November 2024</td>
<td class="summary-amount">$12,000.00</td>
<td class="summary-amount">$13,794.00</td>
</tr>
</tbody>
</table>
<h2>Transactions</h2>
<table class="table transactions">
<thead>
<tr>
<th class="transactions-heading-date">Date</th>
<th class="transactions-heading-description">Description</th>
<th class="transactions-heading-amount">Amount</th>
<th class="transactions-heading-amount">Fees</th>
<th class="transactions-heading-amount">Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>11/4/2024</td>
<td>Purchase $12.00 at Sammy's widgets</td>
<td class="transaction-amount">-$12.00</td>
<td class="transaction-amount">$0.00</td>
<td class="transaction-amount">-$12.00</td>
</tr>
<tr>
<td>11/5/2024</td>
<td>Purchase $4.00 at Acme Coffee Co.</td>
<td class="transaction-amount">-$4.00</td>
<td class="transaction-amount">$0.00</td>
<td class="transaction-amount">-$4.00</td>
</tr>
<tr>
<td>11/9/2024</td>
<td>Withdrawl $140.00 at Edgewood and Main st ATM</td>
<td class="transaction-amount">-$140.00</td>
<td class="transaction-amount">-$0.14</td>
<td class="transaction-amount">-$140.14</td>
</tr>
<tr>
<td>11/14/2024</td>
<td>Deposit $2000.00 from Eagleclaw productions payroll</td>
<td class="transaction-amount">$2,000.00</td>
<td class="transaction-amount">$0.00</td>
<td class="transaction-amount">$2,000.00</td>
</tr>
<tr>
<td>11/19/2024</td>
<td>Send $100.00 to Pat Reynolds</td>
<td class="transaction-amount">-$100.00</td>
<td class="transaction-amount">-$0.10</td>
<td class="transaction-amount">-$100.10</td>
</tr>
<tr>
<td>11/19/2024</td>
<td>Receive $50.00 from Jane Lowell</td>
<td class="transaction-amount">$50.00</td>
<td class="transaction-amount">-$1.00</td>
<td class="transaction-amount">$49.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="2">Monthly Totals</th>
<td class="transaction-footer-amount">$1,794.00</td>
<td class="transaction-footer-amount">-$1.24</td>
<td class="transaction-footer-amount">$1,792.76</td>
</tr>
</tfoot>
</table>
<p class="contact-us">
If you have found errors or have questions about your statement, please
contact Anvil via email at hello@useanvil.com, by phone at (415) 555-3231,
or by mail at 123 Main Street San Francisco CA, 94103.
</p>
<div class="footer pdf-only">
<span>hello@useanvil.com</span>|
<span>(415) 555-3231</span> |
<span>useanvil.com</span>
</div>
</div>