HTML <body> vlink Attribute

Last Updated : 4 Aug, 2023

The HTML <body> vlink Attribute is used to specify a color of a visited link in a Document.

Note: The HTML <body> vlink attribute is not supported by HTML5. Instead of using this attribute, we can use CSS :visited pseudo-class selector.

Syntax:

<body vlink="color_name | hex_number | rgb_number">

Attribute Values:

  • color_name: It specifies the name of the color of the visited link.
  • hex_number: It specifies the color of the visited link in terms of hex code.
  • rgb_number: It specifies the color of the visited link in terms of rgb value

Example:

html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML body vlink Attribute
    </title>
</head>

<!-- body tag starts here -->
<body vlink="red">
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML <body> vlink Attribute</h2>
        
        <p>Click on a Below link</p>
        
        <a href="#">
            It is a Computer Science portal For Geeks
        </a>
        <br>
        
        <p>
              <a href="#">GeeksForGeeks</a>
          </p>
    </center>
</body>
<!-- body tag ends here -->

</html>

Output:

Supported Browsers: The browser supported by <body> vlink Attribute are listed below:

  • Google Chrome
  • Firefox
  • Safari
  • Opera
Comment