You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
montpelliermaalsi2024/invoice_templating/invoices/invoice_4.html

85 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facture 4458a885-ab90-49a4-b5a2-40ae5af30553</title>
<style>
body { font-family: Arial, sans-serif; }
.invoice { width: 80%; margin: auto; border: 1px solid #ddd; padding: 20px; }
.header, .footer { text-align: center; }
.customer-info, .items { margin-bottom: 20px; }
.items table { width: 100%; border-collapse: collapse; }
.items table, th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
.total { text-align: right; font-weight: bold; }
</style>
</head>
<body>
<div class="invoice">
<div class="header">
<h1>Facture 4458a885-ab90-49a4-b5a2-40ae5af30553</h1>
<p>Date: 2020-08-09</p>
</div>
<div class="customer-info">
<h2>Informations Client</h2>
<p>Nom: Andrew Stevens</p>
<p>Email: dudleynicholas@example.net</p>
<p>Adresse: 310 Kendra Common Apt. 164
Reidstad, GA 49021</p>
</div>
<div class="items">
<h2>Articles</h2>
<table>
<tr>
<th>Nom de l'article</th>
<th>Quantit<EFBFBD></th>
<th>Prix unitaire</th>
<th>Total</th>
</tr>
<tr>
<td>shoulder</td>
<td>4</td>
<td>30</td>
<td>120</td>
</tr>
<tr>
<td>maintain</td>
<td>7</td>
<td>44</td>
<td>308</td>
</tr>
<tr>
<td>wish</td>
<td>9</td>
<td>38</td>
<td>342</td>
</tr>
<tr>
<td>reveal</td>
<td>6</td>
<td>17</td>
<td>102</td>
</tr>
<tr>
<td>drop</td>
<td>1</td>
<td>50</td>
<td>50</td>
</tr>
</table>
</div>
<div class="total">
<p>Montant Total: 2903</p>
</div>
<div class="footer">
<p>Merci pour votre achat!</p>
</div>
</div>
</body>
</html>