HTML body Tag

Example

A simple HTML document, with the minimum of required tags:
<html>
<head>
<title>Title of the document</title>
</head>

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

</html>

Teach Yourself  by BH24 HTML Editor Tool!

The <body> tag is supported in all major browsers.

Definition and Usage

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.