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.

78 lines
2.4 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 cf36d58b-4737-4190-96da-1dac72ff5d2a</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 cf36d58b-4737-4190-96da-1dac72ff5d2a</h1>
<p>Date: 2020-01-21</p>
</div>
<div class="customer-info">
<h2>Informations Client</h2>
<p>Nom: Allison Hill</p>
<p>Email: donaldgarcia@example.net</p>
<p>Adresse: 600 Jeffery Parkways
New Jamesside, MT 29394</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>grow</td>
<td>5</td>
<td>29</td>
<td>145</td>
</tr>
<tr>
<td>dinner</td>
<td>6</td>
<td>23</td>
<td>138</td>
</tr>
<tr>
<td>best</td>
<td>7</td>
<td>22</td>
<td>154</td>
</tr>
<tr>
<td>her</td>
<td>6</td>
<td>87</td>
<td>522</td>
</tr>
</table>
</div>
<div class="total">
<p>Montant Total: 2715</p>
</div>
<div class="footer">
<p>Merci pour votre achat!</p>
</div>
</div>
</body>
</html>