![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|
To make the text light up when you pass the mouse over a link just use this code. It only works with Internet Explorer 4.0+. If you are using Netscape you can use this code to change the color of your links, but they will not change color when you pass the mouse over them. Use this code after the <head> tag. |
<HTML>
<head> <style type="text/css> A:link {color:color of the links;} A:visited {color:color of the visited links;} A:hover {color:color of the links when you pass the mouse over them;} {/style} |
For example, |
<HTML>
<head> <style type="text/css"> A:link {color:navy;} A:visited {color:green;} A:hover {color:aqua;} </style> |
Its easier to use one of the sixteen "widely understood color names": aqua(aqua), black, fuchsia, gray, green (green), lime (lime), maroon, navy, olive, purple, red, silver, teal, white (white), or yellow (yellow), instead of using hex colors. |
![]() |