Unordered Lists
An unordered list is designated by the ' ul ' tag. For each new List Item
a ' li ' tag is required. Each new list item is on a new line and is
prefixed with a bullet point.
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
Ordered Lists
An ordered list is designated by the ' ol ' tag. As before, for each new
List Item a ' li ' tag is required. Each new list item is on a new line and
is prefixed with a sequential number.
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
Definition Lists
Definition lists are slightly different. A definition list is designated
by the ' dl ' tag. For each new Definition Term a ' dt ' tag is required. For
each new Definition Term a Definition Description is required. This is acheved
using the ' dd ' tag.
- HTML
- HyperText Mark-up Language
- URL
- Uniform Resource Locator
- Browser
- An application for accessing the WWW
- WWW
- World Wide Web
- Hyperlink
- A link to another document, to any resource or place within
a document.
Nested Lists
Lists can also be nested one inside the other. In this example the primary
list (days of the week), is supplemented by a secondary list for times on
Wednesday.
- Monday
- Tuesday
- Wednesday
- 6am - 9am
- 9am - 12n
- 12n - 3pm
- 3pm - 6pm
- Thursday
- Friday
|