Adding Basic HTML Tags

The basic minimal formatting for an HTML page is as follows:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
    <HEAD>
    <TITLE>Your Title Here</TITLE>
    </HEAD>

    <BODY>
        The body of your document goes here.
    </BODY>
</HTML>