Below you'll see the "Hello World" of an HTML document. This is the absolute minimum number of tags to create a document. <HTML> <HEAD> <TITLE>HTML Tutor</TITLE> </HEAD> <BODY> is required at the beginning of each HTML Document, and each HTML document should terminate with "closing" BODY and HTML tags as shown below. </BODY> </HTML>