<HTML>
<HEAD>
<style>
/* FARBE: Hintergrund und Textfarbe */
body { background-color: #fff9c4; color: #333; font-family: sans-serif; }
h1 { color: #d84315; }
</style>
</HEAD>
<BODY>
<h1>Rezept für eine einfache Suppe</h1>
<!-- TEXTFORMATIERUNG -->
Zuerst schneiden wir das <strong>Gemüse</strong>. <br>
Das ist <i>wichtig</i>, damit alles <u>gleichmäßig</u> gar wird. <br>
<br>
<!-- BILD: Eine Gemüsesuppe -->
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Vegetable_soup.jpg/300px-Vegetable_soup.jpg" alt="Suppe">
<br><br>
<!-- TABELLE: Zutatenliste -->
<table border="1">
<tr>
<th>Zutat</th>
<th>Menge</th>
</tr>
<tr>
<td>Karotten</td>
<td>2 Stück</td>
</tr>
<tr>
<td>Zwiebeln</td>
<td>1 Stück</td>
</tr>
<tr>
<td>Kartoffeln</td>
<td>3 Stück</td>
</tr>
</table>
<br>
Man kann die Suppe mit Schlagobers <u>vëuml;rfeinern</u>. <br>
Wird sie <strong>zu dickflüssig</strong>, muss man <u>etwas Wasser dazugeben</u>. <br>
<br>
Guten Appetit! <br>
<!-- LINK -->
<a href="http://chefkoch.de">Weitere Rezepte auf Chefkoch.de</a>
</BODY>
</HTML>