Hallo,
<a href="index.php" type="text/html"><h5>Index</h5> <a href="wir.php" type="text/html"><h5>Wir</h5> <a href="bilder.php" type="text/html"><h5>Bilder</h5> <a href="news.php" type="text/html"><h5>News</h5> <a href="kontakt.php" type="text/html"><h5>Kontakt</h5> <a href="impressum.php" type="text/html"><h5>Impressum</h5>
der "inhalt" bindet
<b>Zecken sind fies</b>
ein, aber leider als LINK zu der "impressum.php"
Das liegt daran dass du deine <a>-Tags nicht zumachst, nach </h5> sollte ein </a> rein
<a href="index.php" type="text/html"><h5>Index</h5></a>
Beziehungsweise ist das auch nicht so schön (wenn auch in HTML5 erlaubt glaube ich, bin mir aber nicht sicher), sinnvoller wäre das hier (das type soll da auch weg):
<h5><a href="index.php">Index</a></h5>
Und außerdem wenn es eine Linkliste ist dann sollte es auch als Liste ausgezeichnet werden (und nicht wirklich als Überschriften 5ter Ordnung):
<ul>
<li><a href="index.php">Index</a></li>
<!-- und so weiter -->
</ul>
Und dann ist das wohl auch eine Navigation also sollte man es auch in das HTM5-Tag <nav> reinpacken:
<nav>
<ul>
<li><a href="index.php">Index</a></li>
<li><a href="wir.php">Wir</a></li>
<!-- und so weiter -->
</ul>
</nav>
Jeena