The first thing we need to do to have a web page is to type in a
few things.

<HTML>
 <HEAD>
 </HEAD>
<BODY>
</BODY>
</HTML>

<-> is used to start a tag, where - is the tag name.
To close a tag, the code is </->, where again - is the tag name. The <HTML> tag is used to signify the start of an HTML document. It closes with </HTML>. The <HEAD> tag will later be used for a title for your page. Finally, The <BODY> tag is where you will actually put the contents of your web page.

We can now add to our code to put in a title. See at the top of this
window where it says "HTML Tutorial : Page 2"? That is where your
title will show up.

<HTML>
 <HEAD>
 </HEAD>
  <TITLE>Title goes here</TITLE>
<BODY>
</BODY>
</HTML>

Note:
You can change Title goes here to whatever you want.

You may want to sit down and think of what to call your web page -
unless you already have a title. Next we will add some text to our
little web page.

Previous       Next