HTML body tag
HTML body tag is main part of webpage .web content written inside body.
body is the main part of web page .
Without body is not possible to design web page
Example
<!DOCTYPE html>
<html>
<head>
<title> html body tag </title>
</head>
<body>
<h1> what is body </h1>
<p> body is main part of web page </p>
</body>
</html>
Run above code to see the result
Body is small tag