HTML | <body> alink Attribute

Last Updated : 5 Jan, 2022
The HTML <body> alink Attribute is used to specify the color of an active link in a document.

Note: The HTML <body> alink attribute is not supported by HTML5.

Syntax:
<body alink="color_name|hex_number|rgb_number">
Attribute Values:
  • color_name: It specifies the name of the color of an active link.
  • hex_number: It specifies the color of the activated link in terms of hex code.
  • rgb_number: It specifies the color of the activated link in terms of RGB value.
Example: html
<!DOCTYPE html> 
<html> 

<head> 
    <title>
        HTML body alink Attribute
    </title> 
</head> 
    
<body alink="red" link="blue"> 
    <center> 
        <h1 style="color:green;">
            GeeksforGeeks
        </h1> 
        
        <h2>HTML <body> alink Attribute</h2> 
        
        
        <a href="#">
            A computer science portal for geeks
        </a>
    </center> 
</body> 
    
</html>             
Output: Supported Browsers: The browser supported by HTML <body> alink attribute are listed below:
  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera
Comment