The <HTML> Tag

The <HTML> tag must be the very first and last tag in any HTML document. It along with the <BODY> tag is a necessary element in any web page. The simplest HTML document possible is given as an example of the <HTML> tag.

Some Examples...

HTML CodeResults
<HTML>
<BODY>
The simplest web page there can possibly be...
</BODY>
</HTML>
The simplest web page there can possibly be...