![]() |
Building a better web site ... Questy's, All about HTML Lists |
|
A lot of older HTML courses and tests spend a lot of time discussing the mechanics of lists. If you understand the basics of HTML lists aren't all that hard to figure out. This page gives some examples and samples of lists. A numbered list is identical to an unnumbered list, except it uses <OL> instead of <UL> and the individual items in the list are designated as list items: <li>item</li> .To see what's going on here, just view the source code of this page. The following is an unordered list (bullets):
A definition list (coded as <DL>) usually consists of alternating a definition term (coded as <DT>) and a definition description (coded as <DD>). The following is an example of a definition list:
The output looks like:
The <DT> and <DD> entries can contain multiple paragraphs (indicated by <P> paragraph tags), lists, or other information.
The following is a nested list (notice the differnet types of bullets):
|
|
|
|
![]() |
Welcome
to the World of Questy |