Navigation
Goto : the front page
Goto : under construction (in a new window !)
Goto : JavaScript help
Goto : duff link
Return to : The DIY *2 page
The code
The three following lines, respectively, remove the link underline, make a hover colour, and determine the Body font. The lines go in the HEAD tag.
<HEAD>
<STYLE>
A{text-decoration:none}
A:HOVER {color:Black}
BODY {font-family: verdana, arial, geneva, sans-serif}
</STYLE>