Latest

recent

HTML body link Attribute

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

<body link="red">

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>
HTML body link Attribute Reviewed by 1000sourcecodes on 08:41 Rating: 5
Powered by Blogger.