The body tag is the most important tag in HTML.

Your body element seems after the general mind element on the page. It must include most of the content of the web page: text, images, and so on. All web pages have 1 solitary human body, except for frameset pages, that incorporate frame elements alternatively.

<body> Place your Content Writen here……..</body>  

Example:-

<!DOCTYPE html>  
<html>  
<head>  
 <title>HTML Body Tag</title>  
</head>  
<body>  
 <h2>Example of HTML body tag</h2>  
 <p>This paragraph is written between the body tag</p>  
</body>  
</html>  

Output:-

HTML Body Tag

Example of HTML body tag


This paragraph is written between the body tag

Attributes

The HTML tag also supports the following additional attributes.

  • alink
  • background
  • bgcolor
  • link
  • text
  • vlink
  • onload
  • onunload
  • onfocus
  • onblur

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *