Hallo,
ich möchte in der Navigationsspalte jedem Unterpunkt eine andere Farbe zuweisen wenn ich mit dem Mousezeiger drüberfahre.
Bisher habe ich es geschafft das alle in der Farbe Gold aufleuchten.
Ich möchte aber gerne jedes Wort eine andere Farbe zuweisen.
Z.B.
Home --) Gold
Religion --) Rot
Philosophy --) Blau
Sport --) Gelb
usw, usw...
Leider finde ich im Internet keine Anleitung.
Könnt ihr mir helfen?
Hier ist mein bisheriger Quelltext:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<HEAD>
<Title></title>
<style type="text/css">
<!--
A:link { text-decoration: none; color: red;}
A:visited { text-decoration: none; color: silver;}
A:active { text-decoration: none; color: gold;}
A:hover { text-decoration: none; color: gold;}
-->
body
{
background: "white"
}
h1
{
font-size: 7.2 pt;
font-family: Arial ;
color: red;
margin-top: 2em;
font-weight:800
}
h1
{
font-size: 7.2 pt;
font-family: Arial ;
color: red;
margin-top: 2em;
font-weight:800
}
p { letter-spacing: 0.04em; }
</style>
</HEAD>
<body>
<br>
<br>
<br>
<p style="line-height:1.8em; font-size:0.6em; font-family: Arial; margin-left:0%; margin-right:0%">
<font color="silver">
<a href="Kopie von unter men.html" target="12"><b>Home</b></a>
<br><br><br>
<a href="Kopie von unter men.html" target="12"><b>Uhren</b></a>
<br>
<a href="Kopie von unter men.html" target="12"> <b> Men </b></a>
<br>
<a href="Kopie von unter men.html" target="12"> <b>Philosophie </b></a><br><br><br>
<a href="Kopie von unter men.html" target="12"><b>Religion</b></a>
<br>
<a href="Kopie von unter men.html" target="12"><b>Biologie</b></a>
<br>
<a href="Kopie von unter men.html" target="12"><b>Wirtschaft</b></a>
<br>
<a href="Kopie von unter men.html" target="12"><b>Personal</b></a>
<br>
</font>
</body>
</html>