|
These are used to create orderly lists of anything you want on your page. Only a few tags are needed, and they are easy to learn.
Some of these tags have attributes, all of which can be seen in the Quick Reference Guide. |
| Tag | Explanation |
| <OL> | This command is used to create an ordered (numbered) list. Use the tag </OL> to end the ordered list. |
| <UL> | This tag is used to create an unordered (bulleted) list. Use the tag </UL> to end the list. |
| <LH> | The LH tag is used to make list headers. Use the tag </LH> to end the header. |
| <LI> | This tag is used to put items into your list. No closing tag is needed. |
| Examples |
|
With ordered lists you can choose to have standard numbers (1,2,3), letters (A,B,C), or roman numerals (i,ii,iii), with unordered lists disc, circle, and square can all be used. You can add as many items as you want by simply adding more <LI> tags.
|
| BASIC | |
| Tag | Example |
| <OL TYPE=1,2,3,...> <LI>Standard <LI>Numbers </OL> |
|
| <UL TYPE=disc> <LI>Discs <LI>Item 2 </UL> |
|
| <UL TYPE=circle> <LI>Circles <LI>Item 2 </UL> |
|
| <UL TYPE=square> <LI>Squares <LI>Item 2 </UL> |
|
| <B><LH>Lists Example</LH></B> <OL TYPE=1,2,3...> <B><LH>Lists Example</LH></B> <LI>Standard <LI>Numbers </OL> |
|
| LISTS WITHIN LISTS | |
| <OL> <B><LH>Shopping List</LH></B> <LI>Food <UL> <LI>Fruit <LI>Meat </UL> <LI>Other <UL> <LI>Flowers <LI>Games </OL> |
|
| DEFINITION LISTS |
| Tag | Explanation |
| <DL> | This starts the definition list. </DL> is the closing tag. |
| <DT> | This command gives the term that will be defined. No closing tag is needed. |
| <DD> | The definition of the term. No closing tag is needed. |
| Tag | Example |
| <DL> <B><DT>HTML</DT></B> <DD>Hyper-Text Markup Language</DD> <B><DT>GIF</DT></B> <DD>Graphical Interchange Format</DD> </DL> |
|