27 lines
445 B
HTML
27 lines
445 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Cartailor</title>
|
|
<style>
|
|
table{border-collapse: collapse;}
|
|
th,td{border: 1px solid rgb(160 160 160);padding: 8px 10px;}</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<th>Engine</th>
|
|
<th>EG210</th>
|
|
<th>25000 €</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Transmission</th>
|
|
<th>TSF7</th>
|
|
<th>15000 €</th>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2">Total Price : </th>
|
|
<th>40000 € </th>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |