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:
HTML
It can contain:
H1...H4
PRE
P
HR
Syntax:
<BODY> ... </BODY>
Example:
<HTML>
<HEAD>
</HEAD>
<BODY>
This is my HTML document.
</BODY>
</HTML>