News:

This week IPhone 15 Pro winner is karn
You can be too a winner! Become the top poster of the week and win valuable prizes.  More details are You are not allowed to view links. Register or Login 

Main Menu

How to create text links in multiple colors

Started by charleychacko, October 13, 2006, 02:05:27 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

charleychacko

Would you like to use multiple colors for your text links, rather than using a single link color for the whole page?

You can specify the color of links for the whole page using LINK and VLINK attributes inside the starting BODY tag as follows:

<body link="yellow" vlink="yellow">

<a href="/tips/">
This link will be yellow.
</a>

</body>
Listing #1 : HTML code. Download bodyclr.html (0.21 KB).

But, how can you have one link colored in red, another in green and so forth? You may notice how the following method does not work:

<font color="red">
<a href="/tips/internet/">
Internet
</a>
</font>




<font color="green">
<a href="/tips/windows/">
Windows
</a>
</font>




<font color="blue">
<a href="/tips/programming/">
Programming
</a>
</font>
Listing #2 : HTML code. Download linkclr1.html (0.25 KB).

Result:
Internet
Windows
Programming

Now let's try taking above tags and moving FONT tags inside A tags (anchor or link) as follows:

<a href="/tips/internet/">
<font color="red">
Internet
</font>
</a>




<a href="/tips/windows/">
<font color="green">
Windows
</font>
</a>




<a href="/tips/programming/">
<font color="blue">
Programming
</font>
</a>
Listing #3 : HTML code. Download linkclr2.html (0.25 KB).

Result:
Internet
Windows
Programming

     NOTE: Very early browser implementations of the COLOR attribute in FONT tags didn't recognize color names. Be sure to use numeric color codes whenever possible to make your pages backward compatible with older browsers.