Forum Moderators: open
<a href="http://www.exmaple.com/"><font color="black">Example1</A>
<a href="http://www.example.net/"><font color="black">Example2</A>
<a href="http://www.example.org/"><font color="black">Example3</A>
Thanks,
Jack
[edited by: tedster at 7:57 pm (utc) on Nov. 19, 2004]
If you paste this between your <head>here</head> tags you can have the style rule apply to all your anchor tags.
If you create an external style sheet and reference it in your pages then the effect shall be throughout your pages/site.
<style type="text/css">
a{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: black;
text-decoration: none
}
a:visited{
color: green
}
a:hover{
color: red;
text-decoration: underline
}
a:active{
color: blue
}
</style>
HTH,
-George