Get Organized Basic HTML Structure Formatting Text Lists Images, Links & Tables Sound & Video Frames Tutorial HTML <TAG> Dictionary HTML Colour Chart HTML Error Chart HTML Questions & Answers Back to Southbrook ![]() |
Unordered Lists: <UL> This tag is used to create a list of items. Each item will be identified by a bullet point. The list entries are defined by the <LI> tag.
Example: The code above would make this: With the <UL> tag you can also specify the bullet point shape & if you want a compact version of the list. Using the TYPE attribute you can specify a disc, circle or square bullet point. Example: <UL COMPACT TYPE=square> …
Ordered Lists: <OL> This tag is used to create a list of items. Each item will be identified by a number or roman number. The default is 1, 2 3, but by using the TYPE attribute you can specify other type of ordered numbering. The list entries are also defined by the <LI> tag.
Example:
The code above would make this:
Definition Lists: <DL> Definition lists are used when you want to include a description for each listed item. (like a glossary). Use <DT> for the definition term and the <DD> tag for the definition.
Example:
The code above would make this:
![]() ![]() ![]() |