Wednesday, November 24, 2010

How do you change link color in html?

For example if I want the color of the link to be white, because its over a blue backround, how do i do that?How do you change link color in html?as described above:

link= color of the unclicked link

alink= color of the link while it is being clicked

vlink= color of the link after being visitedHow do you change link color in html?It works but this should be done using css these days

a{color:#%26lt;hex or rgb code%26gt;}

a:active{color:#%26lt;hex or rgb code%26gt;}

a:hover{color:#%26lt;hex or rgb code%26gt;}

Report Abuse

How do you change link color in html?%26lt;BODY bgcolor=%26quot;#000000%26quot; text=%26quot;#FFFFFF%26quot; link=%26quot;#0000FF%26quot;%26gt;

The link attribute changes the color of links..

It can be expressed in the hexadecimal code or with a word, such as a basic color, like red, black, or white.