<html>

Now, a web page is divided into two parts- the head and the body.  The head includes some basic stuff, and the body the bulk of the page.  For our purposes, all you'll need to remember is that the title tag goes in the head.  The title tag tells what the top of the web page bar will say.  The body tag is where the rest of the content goes..

<head>
<title>Title of Web Page</title>
</head>

<body>

 

 

</body>

</html>