Just like 'follow the bouncing ball', power up Notepad and start with this...

<HTML>
</HTML>

Each one of those is called a tag. There is a starting tag and a closing tag. To make a closing tag just add a / to the starting tag. Most, but not all tags have a closing tag. Think of tags as talking to the browser, or better yet giving it instructions. What you have just told the browser (more or less) is this is the start of a HTML document (<HTML>) and this is the end of a HTML document (</HTML>). Now we need to put some stuff into it.


Every HTML document needs a pair of HEAD tags.

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

The only thing we have to concern ourselves with in the HEAD tags (for now) are the TITLE tags.

<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
</HTML>

And the bulk of the page is going to be within the BODY tags.

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

Oh, and one more thing, give your document a title, and put something in the body.

<HTML>
<HEAD>
<TITLE>My big ole bad page!</TITLE>
</HEAD>
<BODY>
Hello Joe!
</BODY>
</HTML>

Now save it, not as a text document, but as a html document. Save it as page1.html in a new folder somewhere. If yer a little fuzzy about how to do this then here's what you do... In your Notepad window click File then Save As.
You will be presented with a dialog box. Make a new folder by clicking this -> New Folder icon
Name it whatever you want. Then double click on it to open it up. Where it says File name: type in page1.html Where it says Save as type: make sure it says All Files(*.*)
Hit return and you're done!

Congratulations! You are the proud parent of a fully functional Web Page! You could upload it to a server and the whole world can see your creation! If you are using Internet Explorer or Netscape, the file you made might look something like this...

HTML file icons
(if your icon is a little different, it's no biggie)

You should be able to double click on it now and see the results of your handiwork.

Next order of business is to start putting some neato stuff in your page.

The best way to use this tutorial is to run Notepad and two instances of your web browser. One browser window containing this tutorial and the other containing your new page. Just toggle between the three windows. You can open a second instance of your browser in one of two ways- 1) Find the icon of the html file you just made (page1.html) and double click on it. Or- 2) In your browser, click on File/Open File (or something similar to that) and browse to the file (page1.html).

Two quick points before we go on to lesson 2. One, what you made is a skeleton HTML document. This is the minimum required information for a web document and all web documents should contain these basic components. And two, the document title is what appears at the very top of the browser window.

<< BACK         NEXT >>

Selfonline-education

FREE LINK

SHOPPING

FREE GIFT