Computer Science, asked by sumitbhaisora789, 4 months ago

III. Long Questions.
1. List and explain the different attributes of the body tag short answer​

Answers

Answered by Anonymous
0

Answer:

HTML | body Tag

Last Updated: 17-07-2019

The <body> tag in HTML is used to define the main content present inside an HTML page. It is always enclosed within <html>tag. The <body> tag is the last child of <html> tag. A body tag contains starting as well as an ending tag.

Syntax:

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

Attributes: There are many attributes in <body> tag which are depreciated from HTML5 are listed below:

background: It contains the URL of 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 active link.

link: It is used to specify the color of visited links.

text: It specify the color of text in a document.

vlink: It specify the color of visited links.

Example 1:

<!DOCTYPE html>  

<html>  

   <head>  

       <title>body tag</title>  

   </head>  

     

   <!-- body tag starts here -->

   <body>  

       <center>  

           <h1>GeeksforGeeks</h1>  

           <h2>body Tag</h2>  

       </center>  

   </body>  

   <!-- body tag ends here -->

     

</html>  

Similar questions