An HTML document is nothing more than plaintext surrounded by a collection of "tags" that describe the documents layout and structure. A minimalistic HTML document looks like this:
Click here to see what it looks like.<HTML> <HEAD> <TITLE>Hello World</TITLE> </HEAD> <BODY> Hello world. This my HTML document. </BODY> </HTML>
Essential points: