-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_invoice.html
More file actions
200 lines (181 loc) · 7.84 KB
/
Copy pathsample_invoice.html
File metadata and controls
200 lines (181 loc) · 7.84 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Invoice #INV-2026-0042</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #f5f5f5; padding: 40px; }
.invoice { background: #fff; max-width: 750px; margin: 0 auto; padding: 48px; border-radius: 4px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
/* Header */
.header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.brand { font-size: 28px; font-weight: 800; color: #1a1a2e; letter-spacing: -0.5px; }
.brand span { color: #6366f1; }
.invoice-meta { text-align: right; }
.invoice-meta h2 { font-size: 22px; font-weight: 700; color: #1a1a2e; }
.invoice-meta p { font-size: 13px; color: #666; margin-top: 4px; }
/* Status badge */
.badge { display: inline-block; background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 8px; }
/* Divider */
hr { border: none; border-top: 1px solid #e5e7eb; margin: 28px 0; }
/* Parties */
.parties { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.party h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #6366f1; margin-bottom: 10px; }
.party h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.party p { font-size: 13px; color: #555; line-height: 1.6; }
/* Dates */
.dates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: #f9fafb; border-radius: 8px; padding: 16px 20px; margin-bottom: 36px; }
.date-item label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #9ca3af; margin-bottom: 4px; }
.date-item span { font-size: 14px; font-weight: 600; color: #1a1a2e; }
/* Table */
table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
thead tr { background: #1a1a2e; }
thead th { padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #a5b4fc; }
thead th:not(:first-child) { text-align: right; }
tbody tr:nth-child(even) { background: #f9fafb; }
tbody td { padding: 12px 14px; font-size: 13px; color: #374151; border-bottom: 1px solid #f3f4f6; }
tbody td:not(:first-child) { text-align: right; }
tbody td:first-child { font-weight: 500; }
/* Totals */
.totals { display: flex; justify-content: flex-end; margin-bottom: 36px; }
.totals-box { width: 260px; }
.totals-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: #555; }
.totals-row.discount { color: #059669; }
.totals-row.total { border-top: 2px solid #1a1a2e; margin-top: 8px; padding-top: 12px; font-size: 16px; font-weight: 800; color: #1a1a2e; }
/* Payment */
.payment { background: #eef2ff; border-left: 4px solid #6366f1; border-radius: 4px; padding: 16px 20px; margin-bottom: 28px; }
.payment h4 { font-size: 12px; font-weight: 700; color: #4338ca; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.payment p { font-size: 13px; color: #4338ca; }
/* Notes */
.notes { font-size: 12px; color: #9ca3af; border-top: 1px solid #e5e7eb; padding-top: 20px; }
.notes strong { color: #6b7280; }
/* Print */
@media print {
body { background: #fff; padding: 0; }
.invoice { box-shadow: none; border-radius: 0; }
}
</style>
</head>
<body>
<div class="invoice">
<!-- Header -->
<div class="header">
<div>
<div class="brand">Pixel<span>Forge</span> Studio</div>
<p style="font-size:12px;color:#888;margin-top:6px;">Creative Design & Development Agency</p>
<p style="font-size:12px;color:#888;">128 Harbour Blvd, Suite 4B<br>San Francisco, CA 94105</p>
<p style="font-size:12px;color:#888;margin-top:4px;">billing@pixelforge.io · +1 (415) 882-0033</p>
</div>
<div class="invoice-meta">
<h2>INVOICE</h2>
<p>#INV-2026-0042</p>
<span class="badge">Unpaid</span>
</div>
</div>
<hr />
<!-- Parties -->
<div class="parties">
<div class="party">
<h4>Bill From</h4>
<h3>PixelForge Studio</h3>
<p>128 Harbour Blvd, Suite 4B<br>San Francisco, CA 94105<br>billing@pixelforge.io<br>+1 (415) 882-0033</p>
</div>
<div class="party">
<h4>Bill To</h4>
<h3>Nexus Dynamics Corp.</h3>
<p>450 Market Street, Floor 12<br>New York, NY 10007<br>accounts@nexusdynamics.com<br>+1 (212) 554-9100</p>
</div>
</div>
<!-- Dates -->
<div class="dates">
<div class="date-item">
<label>Invoice Date</label>
<span>April 3, 2026</span>
</div>
<div class="date-item">
<label>Due Date</label>
<span>May 3, 2026</span>
</div>
<div class="date-item">
<label>Currency</label>
<span>USD</span>
</div>
</div>
<!-- Line Items -->
<table>
<thead>
<tr>
<th>Description</th>
<th>Qty</th>
<th>Unit Price</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>Brand Identity & Logo Design<br><small style="color:#9ca3af">Full brand system including primary/secondary logos, color palette, typography guide</small></td>
<td>1</td>
<td>$4,500.00</td>
<td>$4,500.00</td>
</tr>
<tr>
<td>Website UI/UX Design (10 screens)<br><small style="color:#9ca3af">Figma prototype with desktop and mobile responsive layouts</small></td>
<td>10</td>
<td>$350.00</td>
<td>$3,500.00</td>
</tr>
<tr>
<td>Frontend Development — React<br><small style="color:#9ca3af">Implementation of approved designs, 3 revision rounds included</small></td>
<td>40</td>
<td>$120.00</td>
<td>$4,800.00</td>
</tr>
<tr>
<td>SEO Audit & Optimization Report<br><small style="color:#9ca3af">Technical SEO, keyword analysis, on-page recommendations</small></td>
<td>1</td>
<td>$800.00</td>
<td>$800.00</td>
</tr>
<tr>
<td>Monthly Retainer — April 2026<br><small style="color:#9ca3af">Ongoing support, bug fixes, and minor feature updates</small></td>
<td>1</td>
<td>$1,200.00</td>
<td>$1,200.00</td>
</tr>
</tbody>
</table>
<!-- Totals -->
<div class="totals">
<div class="totals-box">
<div class="totals-row">
<span>Subtotal</span>
<span>$14,800.00</span>
</div>
<div class="totals-row discount">
<span>Discount (5% loyalty)</span>
<span>− $740.00</span>
</div>
<div class="totals-row">
<span>Tax (8.5% CA)</span>
<span>$1,190.30</span>
</div>
<div class="totals-row total">
<span>Total Due</span>
<span>$15,250.30</span>
</div>
</div>
</div>
<!-- Payment Info -->
<div class="payment">
<h4>Payment Terms & Instructions</h4>
<p>Net 30 — Payment due by <strong>May 3, 2026</strong>.<br>
Bank transfer: Chase Bank · Routing: 021000021 · Account: 7734820019<br>
Or pay online at: pixelforge.io/pay/INV-2026-0042</p>
</div>
<!-- Notes -->
<div class="notes">
<strong>Notes:</strong> Thank you for choosing PixelForge Studio! Late payments are subject to a 1.5% monthly finance charge. All work is governed by the Master Services Agreement signed on January 15, 2026. For questions, contact billing@pixelforge.io.
</div>
</div>
</body>
</html>