The basic use of these tags is:

The basic use of these tags is:
<HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> </BODY> </HTML>
Notice the bar at the top of this browser window. It should say Learning HTML - Chapter 3.1. That is the title of this particular document. If a document does not have a title, the browser will display the name and location of the file. Without a title, this document would have something like this displayed:
http://www.bsimple.org/learnhtml/chap3/1.html
To include a title, add the following text at the beginning of your document after the <HTML> tag (substitute your name for "Paul"). Remember to use Alt-Tab or the Taskbar to switch back and forth from Notepad to this guide:
<HEAD> <TITLE>Learning HTML - Paul's First Document</TITLE> </HEAD>
In your document, add a <BODY> tag on a line after the </HEAD> tag. Then add a </BODY> tag at the end of the document right before the </HTML> tag.
Note: we will be making a number of changes to this document. They will all be viewed at the end of Part 3. If you want to see them as you go along, you just need to save the file in Notepad and then open it in Netscape. Go back to Part 2 if you want to review the instructions for doing this.