What is Vlink Attribute in HTML

In this article we will discuss about how to use the vlink attribute in HTML.
  • 7393

 The vlink attribute stands for visited link in HTML. The vlink attribute specifies the color of visited links in a document and in our example the visited link color is set to red.

HTML Code:

<html>

<body vlink="red">

    <p>

        <a href="http://www.google.co.in">Google.com</a></p>

    <p>

        <a href="http://www.gmail.com">Gmail.com</a></p>

</body>

</html>

Output:

 selectt.jpg

In the above output we have seen that the visited link are coming in red color.

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.