BODY Element

The BODY element contians the actual document which is to be presented. It is the second part of a HTML document. The first part is the HEAD. It cannot contain the head, nor can it be inside the HEAD. It can only be contained in the HTML element.

It can be in:

It can contain:

Syntax:

<BODY> ... </BODY>

Example:


<HTML>
<HEAD>
</HEAD>
<BODY>
This is my HTML document.
</BODY>
</HTML>