Definition and Usage The link attribute specifies the color of the unvisited links for a page. Compatibility Notes The link attribute of th...
Definition and Usage
The link attribute specifies the color of the unvisited links for a page.
Compatibility Notes
The link attribute of the body element was deprecated in HTML 4.01 and is not supported in XHTML 1.0 Strict DTD.
Use CSS instead.
CSS syntax (in <head>): <style>a:link {color: #FF0000}</style>
Syntax
<body link="color_value"> |
Syntax Example
Attribute Values
Value | Description |
color_name | Specifies the unvisited link color with a color name, like "red" |
RGB_value | Specifies the unvisited link color with a RGB value, like "rgb(255,0,0)" |
Hex_value | Specifies the unvisited link color with a hex value, like "#ff0000" |
Browser Support
The attribute is supported in all major browsers.
Example
<html>
<body link="red">
<a href="http://www.example.com/">An example link</a>
</body>
</html> |