385 lines
8.4 KiB
HTML
385 lines
8.4 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="da">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Faktura INV-2026-0042</title>
|
||
|
|
<style>
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'Segoe UI', Arial, sans-serif;
|
||
|
|
font-size: 11px;
|
||
|
|
color: #333;
|
||
|
|
line-height: 1.4;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice {
|
||
|
|
max-width: 210mm;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 15mm 20mm;
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Header */
|
||
|
|
.header {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: flex-start;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
padding-bottom: 20px;
|
||
|
|
border-bottom: 3px solid #00897b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.company-name {
|
||
|
|
font-size: 28px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #00897b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo {
|
||
|
|
width: 80px;
|
||
|
|
height: 80px;
|
||
|
|
background: linear-gradient(135deg, #00897b 0%, #26a69a 100%);
|
||
|
|
border-radius: 12px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
color: white;
|
||
|
|
font-size: 32px;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Info section */
|
||
|
|
.info-section {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-bottom: 25px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.recipient {
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.recipient-label {
|
||
|
|
font-size: 10px;
|
||
|
|
color: #666;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 0.5px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.recipient-name {
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-details {
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-title {
|
||
|
|
font-size: 32px;
|
||
|
|
font-weight: 300;
|
||
|
|
color: #00897b;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
letter-spacing: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-meta {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: auto auto;
|
||
|
|
gap: 4px 15px;
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-meta dt {
|
||
|
|
text-align: left;
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-meta dd {
|
||
|
|
text-align: right;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Greeting */
|
||
|
|
.greeting {
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 500;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
padding-bottom: 15px;
|
||
|
|
border-bottom: 1px solid #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Table */
|
||
|
|
.invoice-table {
|
||
|
|
width: 100%;
|
||
|
|
border-collapse: collapse;
|
||
|
|
margin-bottom: 25px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table thead {
|
||
|
|
border-bottom: 2px solid #00897b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table th {
|
||
|
|
padding: 10px 8px;
|
||
|
|
text-align: left;
|
||
|
|
font-size: 10px;
|
||
|
|
font-weight: 600;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 0.5px;
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table th.right {
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table td {
|
||
|
|
padding: 12px 8px;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
vertical-align: top;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table td.right {
|
||
|
|
text-align: right;
|
||
|
|
font-family: 'JetBrains Mono', 'Consolas', monospace;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table td.center {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.invoice-table tbody tr:last-child td {
|
||
|
|
border-bottom: 2px solid #00897b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Totals */
|
||
|
|
.totals-section {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.vat-note {
|
||
|
|
font-size: 10px;
|
||
|
|
color: #666;
|
||
|
|
padding: 8px 12px;
|
||
|
|
background: #f5f5f5;
|
||
|
|
border-radius: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.totals {
|
||
|
|
width: 250px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.totals-row {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: 6px 0;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
}
|
||
|
|
|
||
|
|
.totals-row.total {
|
||
|
|
border-bottom: none;
|
||
|
|
border-top: 2px solid #00897b;
|
||
|
|
margin-top: 5px;
|
||
|
|
padding-top: 10px;
|
||
|
|
font-weight: 600;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.totals-row .amount {
|
||
|
|
font-family: 'JetBrains Mono', 'Consolas', monospace;
|
||
|
|
}
|
||
|
|
|
||
|
|
.totals-row.total .amount {
|
||
|
|
color: #00897b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Payment info */
|
||
|
|
.payment-section {
|
||
|
|
background: #f8f9fa;
|
||
|
|
padding: 15px 20px;
|
||
|
|
border-radius: 6px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.payment-title {
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.payment-details {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: auto 1fr;
|
||
|
|
gap: 3px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.payment-details dt {
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
|
||
|
|
.payment-details dd {
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.late-fee {
|
||
|
|
margin-top: 12px;
|
||
|
|
font-size: 10px;
|
||
|
|
color: #888;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Footer */
|
||
|
|
.footer {
|
||
|
|
text-align: center;
|
||
|
|
padding-top: 20px;
|
||
|
|
border-top: 1px solid #e0e0e0;
|
||
|
|
font-size: 10px;
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-company {
|
||
|
|
font-weight: 500;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media print {
|
||
|
|
body {
|
||
|
|
print-color-adjust: exact;
|
||
|
|
-webkit-print-color-adjust: exact;
|
||
|
|
}
|
||
|
|
.invoice {
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="invoice">
|
||
|
|
<!-- Header -->
|
||
|
|
<header class="header">
|
||
|
|
<div class="company-name">PlanTempus ApS</div>
|
||
|
|
<div class="logo">PT</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<!-- Info Section -->
|
||
|
|
<section class="info-section">
|
||
|
|
<div class="recipient">
|
||
|
|
<div class="recipient-label">Faktureres til</div>
|
||
|
|
<div class="recipient-name">Bella Rosa Hair & Beauty ApS</div>
|
||
|
|
<div>Vesterbrogade 124, 2. sal</div>
|
||
|
|
<div>1620 København V</div>
|
||
|
|
<div>CVR: 41827365</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="invoice-details">
|
||
|
|
<div class="invoice-title">FAKTURA</div>
|
||
|
|
<dl class="invoice-meta">
|
||
|
|
<dt>Fakturanr.:</dt>
|
||
|
|
<dd>INV-2026-0042</dd>
|
||
|
|
<dt>Fakturadato:</dt>
|
||
|
|
<dd>14.01.2026</dd>
|
||
|
|
<dt>Kundenr.:</dt>
|
||
|
|
<dd>1847</dd>
|
||
|
|
<dt>Side:</dt>
|
||
|
|
<dd>1 af 1</dd>
|
||
|
|
</dl>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- Greeting -->
|
||
|
|
<div class="greeting">Tak for din bestilling!</div>
|
||
|
|
|
||
|
|
<!-- Invoice Table -->
|
||
|
|
<table class="invoice-table">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th style="width: 40px;">Lnr</th>
|
||
|
|
<th>Beskrivelse</th>
|
||
|
|
<th class="right" style="width: 60px;">Antal</th>
|
||
|
|
<th style="width: 60px;">Enhed</th>
|
||
|
|
<th class="right" style="width: 90px;">Stk. pris</th>
|
||
|
|
<th class="right" style="width: 90px;">Pris</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<tr>
|
||
|
|
<td class="center">1</td>
|
||
|
|
<td>Salon OS Professional - Januar 2026</td>
|
||
|
|
<td class="right">1</td>
|
||
|
|
<td>måned</td>
|
||
|
|
<td class="right">599,00</td>
|
||
|
|
<td class="right">599,00</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td class="center">2</td>
|
||
|
|
<td>Ekstra brugerlicenser</td>
|
||
|
|
<td class="right">3</td>
|
||
|
|
<td>stk</td>
|
||
|
|
<td class="right">49,00</td>
|
||
|
|
<td class="right">147,00</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td class="center">3</td>
|
||
|
|
<td>SMS-pakke (500 stk)</td>
|
||
|
|
<td class="right">1</td>
|
||
|
|
<td>stk</td>
|
||
|
|
<td class="right">199,00</td>
|
||
|
|
<td class="right">199,00</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<!-- Totals -->
|
||
|
|
<section class="totals-section">
|
||
|
|
<div class="vat-note">
|
||
|
|
Momsfrit beløb: 0,00 · Momspligtigt beløb: 945,00
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="totals">
|
||
|
|
<div class="totals-row">
|
||
|
|
<span>Subtotal:</span>
|
||
|
|
<span class="amount">945,00</span>
|
||
|
|
</div>
|
||
|
|
<div class="totals-row">
|
||
|
|
<span>25,00% moms:</span>
|
||
|
|
<span class="amount">236,25</span>
|
||
|
|
</div>
|
||
|
|
<div class="totals-row total">
|
||
|
|
<span>Total DKK:</span>
|
||
|
|
<span class="amount">1.181,25</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- Payment Info -->
|
||
|
|
<section class="payment-section">
|
||
|
|
<div class="payment-title">Betalingsbetingelser: Netto 14 dage - forfald 28.01.2026</div>
|
||
|
|
<dl class="payment-details">
|
||
|
|
<dt>Beløbet indbetales til vores bank:</dt>
|
||
|
|
<dd><strong>Nordea</strong> - Reg.nr.: <strong>2191</strong> / Konto: <strong>4587296301</strong></dd>
|
||
|
|
<dt>Fakturanr.</dt>
|
||
|
|
<dd><strong>INV-2026-0042</strong> bedes anført ved bankoverførsel</dd>
|
||
|
|
</dl>
|
||
|
|
<div class="late-fee">Ved for sen betaling påregnes rente i henhold til gældende lovgivning.</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- Footer -->
|
||
|
|
<footer class="footer">
|
||
|
|
<div class="footer-company">PlanTempus ApS</div>
|
||
|
|
<div>Amager Strandvej 22 · 2300 København S · Danmark</div>
|
||
|
|
<div>Tlf.: 70 20 42 89 · E-mail: faktura@plantempus.dk</div>
|
||
|
|
<div>Bank: Nordea · Konto: 2191 / 4587296301 · CVR: 38894226</div>
|
||
|
|
</footer>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|