Hi,
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#99CCFF" text="#000000">
<style type="text/css">
style-Elemente gehören ins head-Element, nicht ins body-Element.
<!--
a.farb:link { color:#ffffff;
font-family:Tahoma,sans-serif; font-weight:bold; font-size:10pt; text-decoration:none; }
-->
</style>
<style type="text/css">
ein zweites style-Element ist nicht nötig.
<!--
a.hyp:link { color:#ffffff;
font-family:Tahoma,sans-serif; font-weight:bold; font-size:10pt; text-decoration:none; }
-->
</style>
<style type="text/css">
Auch das dritte style-Element ist nicht nötig, die styles können ALLE in einem style-Element definiert werden.
<!--
a.farb1:link { color:#000066;
font-family:Tahoma,sans-serif; font-weight:bold; font-size:10pt; text-decoration:none; }
-->
</style>
<script language="JavaScript">
hier fehlt das type-Attribut
</script>
<style type="text/css">
</style>
Ein leeres Style-Element ist überflüssig...
</head>
head hast Du bereits weiter oben zugemacht.
<body>
body im body ist nicht erlaubt.
<div id="menu1" class="link" style="background-color:rgb(51,102,153); position: absolute; visibility: hidden; left: 105px; top: 20px">
</div>
<div id="menu4" class="link" style="background-color:rgb(51,102,153); width:93 px; position: absolute; visibility: hidden; left: 105px; top: 80px; right: 250px">
width hat keinen gültigen Wert (Leerzeichen zwischen der Zahl und der Einheit ist nicht zulässig)
<a class="farb" href="stuff/tunning.html">Auto Tunning</a> <br>
</div>
<div style="background-color:"withe"; font-color:"blue"; position: top:"100" left:"20" font-family:Arial; width:190 px">
Dein style-Attribut enthält genau "background-color:"
Und sonst nichts.
withe ist kein sinnvoller Wert für background-color, "withe" ist noch weniger sinnvoll.
Eine CSS-Property font-color gibt es nicht, "blue" ist kein zulässiger Wert für die vermutlich gewünschte Property color.
"100" ist kein sinnvoller Wert für top (100 auch nicht, weil die Einheit fehlt).
"20" ist kein sinnvoller Wert für left (20 auch nicht, weil die Einheit fehlt).
Bei der font-family fehlt die empfohlene generische Schrift.
Bei width ist ein Leerzeichen vor der Einheit.
<a class="hyp" href="javascript:einblenden('menu1')">About Me!!</a><BR>
</div>
Mach also erstmal HTML/CSS aus dem Verhau, wenn es dann noch nicht klappt, kann man weitersehen.
Ach ja, Du solltest Dich auch mal mit Kontext-Selektoren beschäftigen...
cu,
Andreas
Der Optimist: Das Glas ist halbvoll. - Der Pessimist: Das Glas ist halbleer. - Der Ingenieur: Das Glas ist doppelt so groß wie nötig.