This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/web/1_sem/aufgaben_tag2.html

62 lines
1.3 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Aufgaben Tag 2</title>
<link rel="stylesheet" href="css/tag2.css">
</head>
<body>
<header>
<img src="assets/ersatzteile.png" alt="Logo">
</header>
<nav>
<ul>
<li><a href="http://www.20min.ch">Home</a></li>
<li><a href="http://www.20min.ch">Produkte</a>
<ul>
<li><a href="http://www.20min.ch">Eisenwaren</a></li>
<li><a href="http://www.20min.ch">Holzwaren</a></li>
</ul>
</li>
</ul>
</nav>
<article>
<h1>Hauptüberschrift</h1>
<h2>Artikelüberschrift</h2>
<p>Erster Absatz</p>
<p>Zweiter Absatz mit <b>wichtigen Inhalten</b> </p>
<p>Dritter Absatz mit <em>seltsamen Inhalten </em></p>
<h3>Unsere Mitglieder</h3>
<table frame="box">
<tr>
<th>Name</th>
<th>Vorname</th>
<th>Funktion</th>
</tr>
<tr>
<td>Meier</td>
<td>Sebastian</td>
<td>Präsident</td>
</tr>
<tr>
<td>Müller</td>
<td>Max</td>
<td>Kassier</td>
</tr>
<tr>
<td>Schmid</td>
<td>Erwin</td>
<td>Festprogramm</td>
</tr>
</table>
</article>
<footer>
<p id="copyright">2017 by Tiefenthaler Warenhandlung</p>
</footer>
</body>
</html>