HTML <body> Tag Example

HTML Code:

<!DOCTYPE html>
<html>
  <head>
    <title>Body Tag Example</title>
  </head>

  <body>
    <h2>This is inside the body tag</h2>
    <p>All the visible content on a webpage goes inside the <body> tag.</p>
  </body>
</html>
    

Output in Browser:

This is inside the body tag

All the visible content on a webpage goes inside the <body> tag.

Note: Everything you see in the browser (text, images, headings, paragraphs, etc.) is written inside the <body> tag in an HTML page.