<TITLE>
The <TITLE> tag tells the browser what to call the page. If the <TITLE> is left out, the page name at the top of the browser window will be: filename.htm(l). As this name is also the one which will show up when a viewer bookmarks your page, it's a good idea to have a title which sums up your page without being so long that it will be cut off.<TITLE>Jenny's Amazing Cat Picture Page</TITLE> is probably OK.<TITLE>A Place for Jenny (aka Nenno@leelanau.com) Stewart to Put a Large Number of Feline Enhanced Photos</TITLE> is probably stretching things a bit.
</TITLE>
<!--THIS TAG-->
The comment tag is one that is self-contained: it contains an open and a close command. Any tag that is proceeded by a <!-- will be ignored by web browsers! If you forget to close this tag with a -->, no one will be able to read anything after it. The comment tag is handy because you can put information for people who are viewing the source of the page like <!--Page Copyright Information-->.
The complete head:</HEAD>
<HTML>
<HEAD>
<TITLE>My Amazing Page</TITLE>
<!--Written by Me-->
</HEAD>
The inhuman body:</BODY>
<BODY BGCOLOR="#FFFFFF" BACKGROUND="background.gif" TEXT="#000044" LINK="#006600" VLINK="990000">makes a page that looks like this
<H6> Smallest |
<H5> Smaller |
<H4> Small |
<H3> Big |
<H2> Bigger |
<H1> Biggest |
|
<FONT SIZE="1"> This |
<FONT SIZE="2"> This |
<FONT SIZE="3"> This |
<FONT SIZE="4"> This |
<FONT SIZE="5"> This |
<FONT SIZE="6"> This |
<FONT SIZE="7"> This |
|
<B> </B> Bold Text |
<I> </I> Italic Text |
<U> </U> Underlined Text |
<SMALL> </SMALL> Small Text |
<BIG> </BIG> Big Text |
<BLINK> </BLINK> |
Broken Image Symbol
The first thing I would do is place an anchor just above the location I want to link to by typing: <A NAME="start"></A>Remember to close both the <A NAME=" "> and the <A HREF="#start"> with a </A>!
This gives me a target. Since it's on the same page, all I would have to type for the link would be:
<A HREF="#start">the start of this section</A>
Which would produce a link to: the start of this section.
Typing: <A HREF="mailto:farlane@leelanau.com">farlane@leelanau.com</A> Produces: farlane@leelanau.com



The Bare Bones Guide
Just the facts. A great cheat sheet.
webreference.com
(in my opinion) simply the best HTML site there is.
Hagan's HTML Help
is another good basics site.
FFFFFF.html
for colors.
Guide to Special Characters
like [&], ["] and [©]
HTML Editors
...why not?
Why the web sucks II
is a thought provoking piece on designing web pages.