body
I. Description
The HTML body element holds the content which will be displayed by a web browser when the page is loaded.
Only one body element is allowed on each html document. The body element must be a child of the root html element and follow the head element.
II. Examples
<!DOCTYPE html>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<p>This is a very simple webpage.</p>
</body>
</html>