|
<HTML> - Should be the first tag included in
your webpage.
<HEAD> - Should be the second tag in your webpage.
It provides a space for heading tags.
<TITLE>Put your title in this area. It might
be something like My first webpage.</TITLE>
</HEAD> - Should close the heading section.
<BODY BACKGROUND="image.gif"
BGCOLOR="#000000" TEXT="#0000FF"
LINK="#00FF00" VLINK="#FF0000"
ALINK="#00FF00">
You may include several HTML
tags in this area. Below are listed many of the more commonly
used tags.
Font Tags
<H1>,<H2>,<H3>,<H4>
Changes your text size from the
default setting.
<H1>Example</H1>
<FONT SIZE = "5"
COLOR="C0C0C0">
Changes your text size and/or
from the default setting.
<FONT SIZE="5" COLOR="#C0C0C0">Example</FONT>
The Image Tag
<IMG SRC="IMAGE.GIF">
<IMG SRC="EXAMPLE.GIF">

More on the image tag...
The Link Tag
<A HREF="location
and name of a desired webpage" NAME="Link"
TARGET="Target
Name"> - Gives you a link to another page.
<A HREF="http://www.lightlink.com/">Example</A>
List Tags
|
The unordered list |
The ordered list |
|
<ul>
<li>Item
1
<li>Item 2
</ul> |
<ol>
<li>Item
1
<li>Item 2
</ol> |
|
yields: |
yields: |
|
|
- Item 1
- Item 2
|
</BODY> Closes
the body section of your webpage.
</HTML> Closes the webpage.
Other Basic Tags
<CENTER>Center</CENTER>
<I>Italicize</I>
<U>Underline</U>
<B>Bold</B>
<PRE>Preformat</PRE> - Creates text as you type it.
<DD> - Indents a line of text.
<BR> - Creates a break between items.
<HR> - Creates a hairline between items. |