This commit is contained in:
S170H
2023-10-16 20:15:04 +02:00
parent 79f0d28cd3
commit 783d211254
3 changed files with 90 additions and 6 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tabelle</title>
</head>
<body>
<table border="solid">
<tr>
<th>Art</th>
<th>Gericht</th>
<th>Preis</th>
<th>Werktag</th>
<th>Wochenende</th>
<th>Inhaltsstoffe</th>
</tr>
<tr>
<td>Vegetarisch</td>
<td>Kürbis-Chai-Teller</td>
<td>2,10&euro;</td>
<td rowspan="2" colspan="2">Ganze Woche</td>
<td></td>
</tr>
<tr>
<td rowspan="2">Pasta</td>
<td>Spaghetti Carciofo</td>
<td>3,50&euro;</td>
<td>A,A1</td>
</tr>
<tr>
<td>Bandnudeln</td>
<td>3,50&euro;</td>
<td></td>
<td>x</td>
<td>A, D, A1</td>
</tr>
</table>
</body>
</html>