Body Tag Most Useable Tag in HTML. Everything inside the Body tag. You add an element or tag show inside the main browser window. The <body> opening body tag and </body> closing tag You Write text, Element, and tag Show Inside Browser.
Syntax:
<body>
<h2>Add Tag Here </h2>
</body>
<html>
<head>
<title> HellHome page </title>
</head>
<body>
<h1> Body tags </h1>
<div>
<h1> div inside body tag </h1>
</div>
</body>
</html>