<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body link="red">
<h2> Body Tag With Link Attribute Example </h2>
<a href="#"> link1 </a>
</body>
</html>
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body text="red">
<h2> Body Tag With Text Attribute Example </h2>
</body>
</html>
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body background="Img/img.png">
<h2> Body Tag With Background Attribute Example </h2>
</body>
</html>
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body bgcolor="lightblue">
<h2> Body Tag With Bgcolor Attribute Example </h2>
</body>
</html>