Jim Lucas' Just Enough HTML
This page is provided if you want to get started with page editors, and don't want to be bothered with learning HTML. While these editors will help you create pages, I've found it necessary to know some code. How much? Just enough. I think you can get by if you at least know the following:
HTML Framework Tags
<HTML>
<HEAD>
<TITLE> Your Page's Title </TITLE>
</HEAD>
<BODY>
The Body of Your Page
</BODY>
</HTML>
HTML Style Tags
<B>bold</B>
<I>italics</I>
<PRE>
preformatted text
</PRE>
HTML Separation Tags
<P>paragraph
<BR>break
<HR>horizontal line
<HR SIZE=##>, where ## is the thickness of the line you want.
<NOBR> text not to be broken </NOBR>
HTML Heading Tags
<H1></H1> --- use any number from 1 to 6
HTML List Tags
<LI>basic bullet tag
<OL>start ordered list
<LI>item 1
<LI>item 2
<LI>item 3
</OL>end ordered list
HTML Link Tags
<A HREF="http://server/path/filename.html"> anchor text</A>
the above is the basic link tag
<A HREF="#place">anchor text</A>
the above links to a different place on a page, and
requires this at the target:
<A NAME="place">