com...
avakiana just a does® it this way...
One way is to put a code like this in the head section.
<style type="text/css">
<!--
.myway1 {
color:#xxxxxx;font-size:xxpx;
},
.myway2 {
color:#xxxxxx;font-size:xxpx;
},
-->
</style>
And then use the class="myway1" , or class="myway1"
n' the gunny just a does® it like this...
<style type="text/css">
<!--
body{scrollbar-highlight-color:"#003300"; scrollbar-shadow-color:"#003300";
scrollbar-track-color:"#000000";
scrollbar-darkshadow-color:"#000000"; scrollbar-base-color:"#006600"}
a:hover, a:active{background:"#000000"; color:"#006600"; text-decoration:"none"}
a:visited{text-decoration:"none"}
a{color:"#000000"; text-decoration:"none"}
<!-- The above three lines are the default styles for links. Since hover and active are the
same one style can be applied to both. These are the styles used by Link 1 (below). -->
.newlink{color:"#ffffff" ! important; text-decoration:"underline" ! important}
<!-- The above style is used to override the default style. This is used by Link 2 (below)
as a class attribute to apply this styling. -->
-->
</style>
<html>
<head>
<title>Test Style</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="#006600">
<a href="page1.html">Link 1</a><br>
<a href="page1.html" class="newlink">Link 2</a><br>
</body>
</html>
orrr as frederick says...
See WDG's FAQ at
http://www.htmlhelp.com/faq/html/links.html#link-2color .
n' lastly but certainly nottt just a leastly®...iri says...
<html>
<head>
<style>
a:link, a:visited, a:active {color: blue;}
a:hover {color: orange;}
a.other:link, a.other:visited, a.other:active {color: purple;}
a.other:hover {color: green;}
</style>
</head>
<body>
<a class="other" href="a.htm">other link, purple</a>
<a href="a.htm">normal link, blue</a>
</body>
</html>