An Introduction to HTML: Lists


There are many options for listing information.


For the first two types of lists, use <LI> in front of each item in the list. Here's how to create an unordered list:

<UL>
<LI> Harvard University
<LI> Yale University
<li> Princeton University
</UL>


Here's an ordered list:

<OL>
<LI> Princeton University
<LI> Yale University
<LI> Harvard University
</OL>

  1. Princeton University
  2. Yale University
  3. Harvard University


You can "nest" lists within lists:

<UL>
<LI> Harvard University

<UL>
<LI> Law School
<LI> Medical School
</UL>

<LI> Yale University
<LI> Princeton University
</UL>


Definition Lists are useful for bibliographies. Here are two books about HTML:


<dl>
<dt> Teach Yourself HTML Web Publishing in a Week, by Laura Lemay
<dd> Sams Publishing. Also oriented toward those who plan to publish materials on the web. ISBN: 0-672-30667-0. 400 pages. Includes information on setting up servers and handling forms results as well as HTML writing and editing.
<P>

<dt> The HTML Manual of Style, by Larry Aronso
<dd> From Ziff-Davis Press. Chapters: introduction to the WWW, the HTML language, writing HTML documents, and HTML examples. 120 pages.
</dl>

Teach Yourself HTML Web Publishing in a Week, by Laura Lemay
Sams Publishing. Also oriented toward those who plan to publish materials on the web. ISBN: 0-672-30667-0. 400 pages. Includes information on setting up servers and handling forms results as well as HTML writing and editing.

The HTML Manual of Style, by Larry Aronso
From Ziff-Davis Press. Chapters: introduction to the WWW, the HTML language, writing HTML documents, and HTML examples. 120 pages.