Mahlzeit!
Hier wird ja richtig heiß diskutiert. Schön! ;-)
Also, die gesamte CSS-Datei sieht folgendermaßen aus:
<style type="text/css" title="Hoverfarben">
<!--
a:link {text-decoration:underline; color:#336699; }
a:visited { text-decoration:underline; color:#336699; }
a:hover { text-decoration:none; color:#ff9900; }
a:active { text-decoration:none; color:#ff9900; }
body { font-family:Verdana,Arial; font-size:8pt; color:#336699; background-color:#DEDCDC;}
-->
Dann habe ich beispielsweise eine HTML-Datei, in der diese Farben verwendet werden sollen:
<html>
<head>
<title>TITEL</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel= stylesheet type="text/css" href="style.css">
</head>
<body>
und hier dann der normale HTML-Code
</body>
</html>