Steps to Create a Home Page
by..Dick Travis


The following is an example of a new "Home Page" created by NOTEPAD:
 
<html>
<head>
<title>
My Home Page
</title>
</head>
<body>
<p>This is the Body of My Homepage where all the text and pictures will appear...
<p>The next area will demonstrate a LINK to the ADNC home page!
<p>
If you want to see the ADNC Home Page,
<a href "http://www.adnc.com>Click Here!!</a>
</p>
<p>The next paragraph will demonstrate the inclusion of a picture file:
<p>I just received this picture (a jpg file) from a friend!
<img src="evolution.jpg">
Note:  Using Netscape Composer, I just browsed my hard disk and clicked on the picture I wanted and it coded it for me!!!
<hr>

The above horizontal line was put in automatically by Netscape Composer, when I click on an ICON in the program,  but the actual code is very simple......just <hr>....


OK, that's enough for the basics,

We need to close with the following commands in HTML

</body>
</html>

That's it...Have fun with developing your own pages!!!