plz solve this que anyone
Answers
Attributes: There are many attributes in the <body> tag which are depreciated from HTML5 are listed below:
background: It contains the URL of the background image. It is used to set the background image.
- bgcolor: It is used to specify the background color of an image.
- alink: It is used to specify the color of the active link.
- link: It is used to specify the color of visited links.
- text: It specifies the color of the text in a document.
- vlink: It specifies the color of visited links.
__________________________________
Example : Using HTML body tag. All then content placed inside the body tag.
HTML
<!DOCTYPE html>
<html>
<!-- body tag starts here -->
<body>
<h1>GeeksforGeeks</h1>
<h2>body Tag</h2>
<p>This is paragraph text</p>
</body>
<!-- body tag ends here -->
</html>
__________________________________
Example 2: Example to show the functioning of a Body tag along with its CSS implementation.
HTML
<!DOCTYPE html>
<html>
<!-- style on the body tag -->
<!-- body tag starts here -->
<body style="background-color:seagreen">
<h1>GeeksforGeeks</h1>
<h2>HTML body Tag</h2>
<p>This is paragraph Tag</p>
</body>
<!-- body tag ends here -->
</html>
__________________________________
I hope it helps you ❤️✔️