| TAG |
DESCRIPTION |
ENDING |
|
| <H1> |
Header |
</H1> |
<H1> through
<H6> H1 being the largest
|
| <CENTER> |
center item |
</CENTER> |
| <B> |
bold text |
</B> |
| <I> |
italic text |
</I> |
| <U> |
underlined |
</U> |
| <P> |
paragraph break |
None Required |
| <BR> |
line break |
None Required |
| <HR> |
horizontal rule |
None Required |
| <FONT SIZE=3> |
text size 1
to 8 |
</FONT> |
| <FONT COLOR=Blue> |
text color |
</FONT> |
Local Image
- To link to an image in your folder
<IMG SRC="some-image.gif">
Remote Image
- To link to an image on another server on
the net (not recommended)
<IMG SRC="http://www.some_server.com/some-image.gif">
Links
<A HREF="http://www.some_server.com/some-page.html">Link
Text</A>
Unordered Lists
<UL>
unordered list
<LI> list item
</UL> end unordered list
Will produce a list like:
Ordered Lists
<OL>
unordered list
<LI> list item
</OL> end unordered list
Will produce a list like:
- List Item 1
- List Item 2
|