Changing Font Color Of Link Text
Solution 1:
<ahref="path"style="color: #ff0000;">Stuff goes here</a>
Or if you change your mind and want to go for CSS than use this
ul.unstyledlia {
color: #ff0000;
}
Solution 2:
If you want to change the color of the link then you can use the onmouseover to change the color during the hovering. but you cannot change the color without using CSS either implicitly or explicitly
Post a Comment for "Changing Font Color Of Link Text"