Computer Science, asked by Genius0819, 1 month ago

dash attributes of <body> tag is used to leave blank area from the top edge of the document​

Answers

Answered by HelloVaibhav
0

Answer:

<body> Body Contents... </body>

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.

<!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>

Similar questions