Welcome to WeetHet!


Managed Web Hosting by Liquid Web

Your IP address:
3.239.59.193
     
 
Print this page
- use Landscape
Search the
WeetHet Pages
WeetHet is being updated! - Current articles will slowly move to www.tweaking4all.com
For excellent webhosting that is reliable and affordable, we highly recommend: LiquidWeb

On this page ...

How to change the color or font of a single link?

It's not something one should do for an entire webpage, but maybe for one particular link you would like to change font style and/or font color.

You might notice when trying to do this that most HTML-editors do not respond the way you would like: nothing changes.

The source of this phenomena is a bit weird, but hey, that's just my opion. The HTML editor puts the <FONT> tag around the <A HREF> tag and that's why it doesn't work. In order to work, the font tag should be INSIDE the <A HREF> tag.

Note: There is an alternative technique called Cascading Style Sheets that is capable of doing this too (I actually used it on this website).

HTML

How is it done?

To show you the difference:

A normal link we want to be green

<font color="#009900">
<a href="blabla.htm">Blabla ?</a>
</font>

will result in this: Blabla ?

All though we defintly indicated that the link should be GREEN (009900 = red 00, green 99 and blue 00)!

See the same link, now using the <FONT> tag inside the <A HREF>:

<a href="https://www.weethet.nl">
<font color="#009900">Blabla ?</font>
</a>

will result in: Blabla ?

This does not only work with colors, but also using font and style.


 

 


Klik hier om te wisselen naar nederlandstalige pagina's You are currently on the English pages.