The body tag
The body
tag contains the main content of the page.
Example
Let's look at the structure of a simple HTML page:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>This is the title title</title>
</head>
<body>
This is the main content of the page.
</body>
</html>
: