body

Support

Specifies the main body of an HTML document. The body element contains the visible content of an HTML document.

Example

<html>
	<head>
		<title>My HomePage</title>
	</head>
	<body>
		The contents of the HTML document.
	</body>
</html>