View Full Version : Link that is bold and a color


doinvinnie
01-04-2006, 02:05 AM
Hi,

I want a text link that is also bold and a color without using CSS. I can't seem to figure out how to do this.

Thanks!

kittycat
01-04-2006, 02:50 AM
<font color="#FF0000"><b><a href="link.html">link</a></b></font>
or
<a href="link.html" style="color: #FF0000; font-weight: bold;">link</a>

doinvinnie
01-04-2006, 03:23 AM
Thanks kc!

pb&j
01-04-2006, 07:23 AM
you might have to reverse the link/formatting tags...
<a href="link.html"><font color="#FF0000"><b>link</b></font></a>
so the link is on the outside of the formatting stuff.