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,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
Listen
<ol>
<li>a</li>
<li>b</li>
<li>c</li>
</ol>
<ul>
<li>a</li>
<li>b</li>
<li>c</li>
</ul>
Schriften
<br>
<b>Fett</b>
<i>Kursiv</i>
<s>durchgestriche</s>
<br>
Linie
<hr>
<br>
Überschriften
<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<br>
Exponent & Indizes
<br>
x<sup>2</sup> x<sub>2</sub>
<br>
Sonderzeichen
<br>
&amp; &lt; &gt; &quot;
<br>
Paragraph
<p>Lorem Ipsum</p>
</body>
</html>

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>

View File

@@ -6,10 +6,10 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Werbeseite</title>
</head>
<body>
Inhalt der Werbeseite f&uuml;r die E-Mensa
</body>
<head>
<title>Werbeseite</title>
</head>
<body>
Inhalt der Werbeseite f&uuml;r die E-Mensa
</body>
</html>