Wednesday 26 March 2014

How To Change The Color of links?

It's really very easy to change the color of links in HTML.

Here's a quick example.




<html>
<body link="blue" vlink="blue">
<a href="www.facebook.com/VatsalTheHacKer">Follow Me</a>
</body>
</html>



Now let me explain this to you.

In this code we have two attributes of body and the are link and vlink.

Link indicates that what will be the color of a link

and Vlink indicates that what will be the color of a visited link.

Note: vlink tag is important because if you have visited a website which is having its link in your webpage then it will turn to dark blue.

Follow Me On My Facebook Account.

No comments:

Post a Comment