You are here : htmlHTML 5body

<body> - HTML 5

The <body> tag defines the document's body.

The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.


Syntax

<body>	The content of the document......	</body>


Example

<html>
	<head>
		<title>Title of the document</title>
	</head>
	<body>
		The content of the document......
	</body>
</html>


Output / Return Value


Limitations


Alternatives / See Also


Reference