top of page

Name :

Phone Number :

2345678

Company :

Email :

Date & Time :

27 grudnia 2021 03:11:21

Product :

<!DOCTYPE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}

td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}

tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>

<h2>Order summary</h2>

<table>
<tr>
<th>Unit</th>
<th>Item</th>
<th>Quantity</th>
<th>Price</th>
</tr><tr>
<tr>
<td>1</td>
<td>sugar</td>
<td>77</td>
<td>$924</td>
</tr><tr>
<tr>
<td>2</td>
<td>Rosana Toilet Roll 32 Roll [2pcs/box]</td>
<td>555</td>
<td>$3596</td>
</tr><tr>
<tr>
<td>3</td>
<td>Persil Gel Regina 3L [6pcs/box]</td>
<td>888</td>
<td>$18648</td>
</tr><tr>
<td class="thick-line"></td>
<td class="thick-line"></td>
<td class="thick-line text-center"><strong>Total Price</strong></td>
<td class="thick-line text-right">$23168</td>
</tr>
</table>

</body>
</html>

bottom of page