Document TagsThis division into sections is marked using HEAD and BODY tags, as follows:
<HEAD>
document header info goes here....
</HEAD>
<BODY>
the body of the document goes here...
</BODY>
Only certain tags are supposed to go into each section. For our purposes, the only tag that goes in the HEAD section is the TITLE tag (this is a paired tag). All of the rest of the tags we will discuss go only in the BODY. The closing BODY tag ("</BODY>") should be the last thing in an HTML document.