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.3 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 4fcca39a-b683-42e6-b37e-a2dfb09b2a5c</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 4fcca39a-b683-42e6-b37e-a2dfb09b2a5c</h1>
<p>Date: 2023-05-24</p>
</div>
<div class="customer-info">
<h2>Informations Client</h2>
<p>Nom: Theresa Miller</p>
<p>Email: wcabrera@example.net</p>
<p>Adresse: 782 Rose Rest
Brandtside, WV 96174</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>we</td>
<td>9</td>
<td>67</td>
<td>603</td>
</tr>
<tr>
<td>camera</td>
<td>4</td>
<td>38</td>
<td>152</td>
</tr>
<tr>
<td>attack</td>
<td>6</td>
<td>12</td>
<td>72</td>
</tr>
<tr>
<td>per</td>
<td>9</td>
<td>39</td>
<td>351</td>
</tr>
</table>
</div>
<div class="total">
<p>Montant Total: 6218</p>
</div>
<div class="footer">
<p>Merci pour votre achat!</p>
</div>
</div>
</body>
</html>