HTML / Web Design Basics (Part III)

A few basic web page elements:


Links
To add links on your webpage, you will need this tag: <A Href="address">address</A>, where "address" is either the name of a file you want to go to or a website.

<A Href="http://www.lissaexplains.com/">LissaExplains.com</A>
LissaExplains.com

<A Href="http://www.htmlgoodies.com/tutorials/colors/article.php/3478961">Word Color Code</A>
Word Color Code

<A Href="http://www.htmlhelp.com/reference/charset/latin1.gif">Special Characters</A>
Special Characters

<A Href="VennDiagramTemplate.pot">Venn Diagram Template</A>
Venn Diagram Template

Email Link
To add an email link on your webpage, you will need this tag: <A Href="mailto:EmailAddress">Email</A>, where EmailAddress" is the email address of a person.

<A Href="mailto:marlene.hoff@stpsb.org">Ms. Hoff</A>
Ms. Hoff


Lists
To add a bulleted list on your webpage, you will need these tags:
<UL>
<LI> item 1
<LI> item 2
</UL>
To add a numbered list on your webpage, you will need these tags:
<OL>
<LI> item 1
<LI> item 2
</OL>