Web page HTML Coding:
The following example of hand written HTML code was one of the first
exercises to be tackled. It included the creation of a web page without a HTML
editor. All code had to be first written in a text editor. NotePad.exe was used.
Upon completion the .txt extension was changed to .html for viewing within the
Internet explorer browser.


Here is the code to go with the above exercise. All code
was written using HTML Tags and operators. This simple operation established a
base for further HTML coding within editors.
<HTML>
<HEAD>
<TITLE>
PEANUTS!!
</TITLE>
</HEAD>
<BODY>
<CENTER>
<Font Face = "Comic Sans ms">
<Font Color = "Blue">
<H1>The influence of Charles M. Schulz </H1>
<H2>Legendary creator of the most successful comic
strip in newpaper history </H2>
<IMG SRC = "Peanuts/snoopy_globe.gif"
width="224" height="221">
</CENTER>
It was PEANUTS that truly brought the American comic strip
into the lives of contemporary readers using innovations such as <i>Lucy's
Psychiatric Booth, Linus' Security Blanket</i> (a phrase originally coined
by Mr.Schulz)<i>, snoopy's fantasies, and Charlie Brown's baseball
team.</i> For more <B>SNOOPY</B> information, check out <A
HREF="HTTP://WWW.SNOOPY.COM">Snoopy's Web Site</A>
<br>
<br>
<Font Face
= "ARIAL">
<Font Color = "GREEN">
<CENTER>
Some members of the PEANUTS gang
</CENTER>
<BR>
<BR>
<CENTER>
<TABLE>
<TR>
<TH><Font Face = "Comic Sans
ms"><Font Color = "Blue">Charlie Brown</TH>
<TH><Font Face = "Comic Sans
ms"><Font Color = "Blue">Linus</TH>
<TH><Font Face = "Comic Sans
ms"><Font Color = "Blue">Lucy</TH>
<TH><Font Face = "Comic Sans
ms"><Font Color = "Blue">PigPen</TH>
</TR>
<TR>
<TD><IMG SRC = "Peanuts/CharlieBrown.gif"
width="155" height="174"></TD>
<TD><IMG SRC = "Peanuts/Linus.gif"
width="155" height="174"></TD>
<TD><IMG SRC = "Peanuts/Lucy.gif"
width="155" height="174"></TD>
<TD><IMG SRC = "Peanuts/PigPen.gif"
width="155" height="174"></TD>
</TR>
<TABLE/>
<CENTER/>
</BODY>