The <HTML> Element



The <HTML> and </HTML> tags identify the document as containing HTML elements. It serves to surround all of the remaining text, including all other elements. Browsers use this element to ensure that the document is actually HTML.

Thus, any constructed document should look like:

<HTML>
The rest of the document is to be placed here.
</HTML>