-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdashboard-invoice.html
107 lines (87 loc) · 1.8 KB
/
dashboard-invoice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Listeo Invoice</title>
<link rel="stylesheet" href="css/invoice.css">
</head>
<body>
<!-- Print Button -->
<a href="javascript:window.print()" class="print-button">Print this invoice</a>
<!-- Invoice -->
<div id="invoice">
<!-- Header -->
<div class="row">
<div class="col-md-6">
<div id="logo"><img src="images/logo.png" alt=""></div>
</div>
<div class="col-md-6">
<p id="details">
<strong>Order:</strong> #00124 <br>
<strong>Issued:</strong> 20/07/2019 <br>
Due 7 days from date of issue
</p>
</div>
</div>
<!-- Client & Supplier -->
<div class="row">
<div class="col-md-12">
<h2>Invoice</h2>
</div>
<div class="col-md-6">
<strong class="margin-bottom-5">Supplier</strong>
<p>
Listeo Ltd. <br>
21 St Andrews Lane <br>
London, CF44 6ZL, UK <br>
</p>
</div>
<div class="col-md-6">
<strong class="margin-bottom-5">Customer</strong>
<p>
John Doe <br>
36 Edgewater Street <br>
Melbourne, 2540, Australia <br>
</p>
</div>
</div>
<!-- Invoice -->
<div class="row">
<div class="col-md-12">
<table class="margin-top-20">
<tr>
<th>Description</th>
<th>Quantity</th>
<th>VAT</th>
<th>Total</th>
</tr>
<tr>
<td>Extended Plan</td>
<td>1</td>
<td>$0.00</td>
<td>$9.00</td>
</tr>
</table>
</div>
<div class="col-md-4 col-md-offset-8">
<table id="totals">
<tr>
<th>Total Due</th>
<th><span>$9.00</span></th>
</tr>
</table>
</div>
</div>
<!-- Footer -->
<div class="row">
<div class="col-md-12">
<ul id="footer">
<li><span>www.example.com</span></li>
<li>[email protected]</li>
<li>(123) 123-456</li>
</ul>
</div>
</div>
</div>
</body>
</html>