Phase 5

The Minimal HTML Document

Before going any further, we need to tell you that you have been misled: the format used in your Web page is not the standard html tags that would be used. By this, we mean that any Web page should contain standard html and have the following format:

<HTML>
<HEAD>
<TITLE>My First Homepage</TITLE>
</HEAD>
<BODY>
In this body section is where most of the Web page appears
</BODY> (to end the body of your Web page)
</HTML> (used when you are done)

You should always remember that an html document starts with <HTML>. Also, remember that a Web page is divided into two sections: the HEAD and the BODY.
The TITLE of your Web page is included in the HEAD section . The BODY contains most of the Web page contents.
Another important thing to recall is that the closing code of the body </BODY> precedes that of the html document, </HTML>.

We did not want you to start with the standard html tags because we believe that it was much better to begin with simple html codes so you could have some ideas on how to create a Web page.

To get more information on HMTL, click here to look at "A Beginner's Guide to HTML" or go to the URL, : http://www.ncsa.uiuc.edu/General/Internet/WWW/. Then, click on the Printable Version to have a look at it. By the way, you can see another minimal HTML document just by clicking on The Minimal HTML Document.

 

The great thing about this site is ....
that you can print the Beginner's Guide to HMTL and learn more on your own!

Let's get back to business and look at the next phase, phase 6 in which you will learn to copy designs from other Web sites

Phase 5