This is a very basic index.html page template
that you can copy and paste to use to get you started.
Change the blue and green typed areas to include your
own information, the green typed area is the part that will
show up on the page.
Your main page must be called "index.html" or "index.htm" or
browsers won't be able to find your page.
All other pages you can name whatever you
like using no spaces (use underscore instead)
and ending in .html or .htm. For example these
are both suitable: links.html or my_links_page.htm.
Your html editor may assist you with color coding or
for an index of color codes check InfiNet.
<HTML>
<HEAD>
<TITLE>Type in your page title - This is what will show on top of the browser</TITLE>
</HEAD>
<BODY background="type in file name of background image (eg. bkg.jpg). If you are not using an image, skip this code" BGCOLOR="type color code or color name here for background (eg either #FFFFFF or White)" TEXT="type color code or color name here for text " LINK="type color code or color name here for links" ALINK="type color code or color name here for active links " VLINK="type color code or color name here for visited links">
<CENTER><H1>Name of your page here</H1></CENTER>
<P>Type your paragraph here.</P>
<P>Type your next paragraph here.</P>
<H2>Unordered/bulleted list of your other pages</H2>
<UL>
<LI><A href="page_file_name.html">Page 2 Title</A>
<LI><A href="page_file_name.html">Page 3 Title</A>
</UL>
<H2>Ordered/numbered list of links</H2>
<OL>
<LI><A href="http://geocities.datacellar.net/">Link to Geocities</A>
<LI><A href="http://www.pbs.org/">Link to PBS</A>
<LI><A href="http://www3.nbnet.nb.ca/shirleym/">Link to Shirley's Place</A>
</OL>
<A href="mailto:you@your.address">E-Mail Me</A>
</BODY>
</HTML>
So, say you want to use this background, white text, red links, orange active links and yellow
visited links, using this template this is what you will have.
You're off to a great start, but you would probably like to perk it up a bit, use some graphics, change the font, add a table or bitmap? Add your own personal touch. Go to the Codes Page for basic codes. Just a few notes before you go, make sure your files end in the extention .html or .htm, check your links, make sure each opening code has a closing code and the rest you'll learn as you go.