BASIC HTML
::
TABLES
::
FONTS
::
FONT SIZES
COLORS
::
GRAPHICS
::
LINKING
::
MUSIC
FORMS
::
LISTS
::
FRAMES
REMOTE LOADING
::
TIPS & TRICKS
LISTS
Numbered Lists contain two different tags.
The entire list is surrounded by the <OL>
and the closing </OL> tags. Each item in
the list is preceded by the List item tag <LI>
To set up your list:
<OL>
<LI> First item
<LI> Second item
<LI> Third item
</OL>
Your list will look like this:
- First item
- Second item
- Third item
You can also make it a bulleted List:
<UL>
<LI> First item
<LI> Second item
<LI> Third item
</UL>
Your list will look like this:
- First item
- Second item
- Third item
If you are trying to show definitions
you can use this code:
<DL>
<DT> Term <DD> Its Definition
<DT> Another Term <DD> Its Definition
<DT> Third Term <DD> Its Definition
</DL>
Your list will look like this:
- Term
- Its Definition
- Another Term
- Its Definition
- Third Term
- Its Definition
You can combined any of the lists on one
page that you want.
All help files are printable so feel free to print them.
Back to Top