Css Styling Links
Just as you would style text on your web pages, styling documents is also a common practice. Links can be styled with CSS properties such as color, font-family, background, and more. A link element also has the ability to be in one of four states (pseudo-class). You can apply CSS to each state independently of each other. The four links states are as follows: a:link – state of an unvisited link by a usera:visited – state when the user has visited the linka:hover – state when the user hovers over ita:active – state when the link is clicked Link Color You can easily apply different colors to the different states of your links....