4b
This commit is contained in:
45
M1/beispiele/m1_4a_textauszeichnung.html
Normal file
45
M1/beispiele/m1_4a_textauszeichnung.html
Normal 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>
|
||||||
|
& < > "
|
||||||
|
<br>
|
||||||
|
Paragraph
|
||||||
|
<p>Lorem Ipsum</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
39
M1/beispiele/m1_4b_tabelle.html
Normal file
39
M1/beispiele/m1_4b_tabelle.html
Normal 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€</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€</td>
|
||||||
|
<td>A,A1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Bandnudeln</td>
|
||||||
|
<td>3,50€</td>
|
||||||
|
<td></td>
|
||||||
|
<td>x</td>
|
||||||
|
<td>A, D, A1</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user