HTML <body> Tag

<!DOCTYPE HTML>
<html>
<head>
<title>Document Title</title>
</head>
<body>
<p>Content goes here...</p>
</body>
</html>

The <body> element declares the main content section of the HTML document.

The <body> element can only be used as the second element in an <html> element (after the <head> element).

There must be only one <body> element per HTML document.