Changing a Link
Color
The default link color is blue. For example:
This is default link color
Here is how to change it to a different color: Add the code: (style="color: color hex or name;") to the
"href" part of the
link tag. Recall that a link tag looks like this: <a href=
"http://link address">link text</a>
The html code for a link with a green color is shown below:
<a href="http://soe.ucdavis.edu" style="color: green;")This
is my Link in green color</a>
This is my link in green color
|