All HTML documents should have the following codes:
Document Type <HTML></HTML> (beginning and end of file)
Title <TITLE></TITLE> (must be in header)
Head <HEAD></HEAD> (after the HTML tag, but before the BODY tags, includes descriptive info, such as title)
Body <BODY></BODY> (after the HEAD tags, bulk of the page)
<HTML>
<HEAD>
<TITLE>Your page title</TITLE>
</HEAD>
<BODY>
The main part of your Web page for public viewing.
</BODY>
</HTML>