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.

26 lines
582 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
<style type="text/css">
table {width: 290px;border: 1px solid black;
border-collapse: collapse;}
td {border: 1px solid black;width: 33%;}
</style>
</head>
<body>
<table>
<tr>
<td style="text-align: left;">Product 1</td>
<td style="text-align: center;">In stock</td>
<td style="text-align: right;">3,43 €</td>
</tr>
<tr>
<td style="text-align: left;">Product 2</td>
<td style="text-align: center;">In order</td>
<td style="text-align: right;">6,72 €</td>
</tr>
</table>
</body>
</html>