To explain how to use HTML the easiest way, how about opening Notepad.exe with an empty file. Next, try typing the following code into the file.
This is the code for creating the basic format of an HTML (Hyper Text Markup Language) document:
<HTML>
</HTML>
The next step is to add the body tags:
<HTML> <Body>
</Body> </HTML>
Then if you want, you can add a title to the page, but before you do that you have to create a file Head (or Header) which will contain the title tags:
<HTML> <Header> <Title>My Home Page</Title> </Header> <Body>
</Body> </HTML>
Once you've got all that written, you can start writing text in between the body tags:
<HTML> <Header> <Title>My Home Page</Title> </Header> <Body>