-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvoice.html
More file actions
44 lines (41 loc) · 1.02 KB
/
Invoice.html
File metadata and controls
44 lines (41 loc) · 1.02 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
<!--
Function Name:Invoice
Description:Display Invoice
Date:29/06/2021
Author: Shubham Lodha -->
<html>
<table border="2" align="center">
<tr>
<td colspan="2" align="center"><b>Invoice#123456789</b></td>
<td colspan="2" align="center"><b>14 January 2025</b></td>
</tr>
<tr>
<td colspan="2"><b>Pay to:</b></br>Acme billing Co.</br>123 Main St.</br>Cityville, NA 12345</td>
<td colspan="2"><b>Customer</b></br>John Smith</br>321 Willow Way<br>Southeast Northwestshire, MA<br>54321</td>
</tr>
<td align="center"><b>Name/ Description</b></td>
<td align="center"><b>Qty</b></td>
<td align="center"><b>@</b></td>
<td align="center"><b>Cost</b></td>
</tr>
<td>Paperclips</td>
<td>1000</td>
<td>0.01</td>
<td>10.00</td>
</tr>
<tr>
<td>Staples (box)</td>
<td>100</td>
<td>1.00</td>
<td>100</td>
</tr>
<tr>
<td colspan="2" align="center"><b>SubTotal</b></td>
<td colspan="2">110.00</td>
</tr>
<tr>
<td colspan="2" align="center"><b>Grand Total</b></td>
<td colspan="2">$110.00</td>
</tr>
</table>
</html>