HTML - <body> Tag



HTML body tag is used to define the main content of any HTML document which will render on webpage. It includes all of the page's primary content, including headings, paragraphs, graphics, tables, etc. The <body> Tag is one such element that serves as a container for all the other webpage elements.

Syntax

<body>
..
.. 
</body>

Attributes

HTML body tag supports Global Attributes and Event Attributes.

Try to click the icon run button run button to run the following HTML code to see the output.

Examples of HTML body Tag

In the bellow examples we will see multiple body tag examples with other HTML elements.

Using div and headinsg elements in body Tag

In the following example, we are creating an HTML document along with a <body> element, which keeps the heading and div of the page.

<!DOCTYPE html>
<html>
<body>
   <h1>Tutorialspoint Online HTML Editor</h1>
   <div>This is real time online HTML Editor</div>
</body>
</html>

Using div, heading and paragraph elements in body Tag

In the following example, we are creating an HTML document along with a <body> element, which keeps the heading, div and paragraph.

<!DOCTYPE html>
<html>
<body>
   <h1>Tutorialspoint Online HTML Editor</h1>
   <div>This is real time online HTML Editor</div>
   <p>Tutorialspoint easy to learn!</p>
</body>
</html>

Including image element in body Tag

In the following example, we are creating an HTML documents which keep the image tag inside the body element.

<!DOCTYPE html>
<html>
<body>
   <h2>This is tutorialspoint logo!</h2>
   <img src="https://www.tutorialspoint.com/images/logo.png?v2" alt="img" />
</body>
</html>

Including hyperlink elements in body Tag

In the following example, we are keeping the hyperlinks tag inside the body element.

<!DOCTYPE html>
<html>
<body>
   <a href="https://www.tutorialspoint.com/index.htm"
      target="_blank">
      Tutorialspoint.com
   </a>
   <a href="https://www.tutorialspoint.com/codingground.htm"
      target="_blank">
      Coding Ground
   </a>
</body>
</html>

Supported Browsers

Tag Chrome Edge Firefox Safari Opera
body Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements