ANATOMY OF A WEBPAGE

All webpages should have the following code:

<HTML>
<HEAD>

<TITLE>Title goes here</TITLE>
</HEAD>
<BODY>
The body of the webpage-Here goes what you want to say.
</BODY>
</HTML>

Type, or Copy & Paste this code to Notepad.

Notice that HTML is identified by <TAGS>. Tags are instructions for the browser.

Tags are usually used in pairs (e.g. <BODY></BODY>)