re-
VISION

PHOTOGRAPHY AND GRAPHICS BY JAY BOERSMA

WebworkHTML Lists

HTML includes easy ways to make numbered ("ordered") and bulleted ("unordered") lists:

Web page: Source:
  • this
  • is
  • an
  • "unordered"
  • list
<ul>
   <li>
this
   <li>
is
   <li>
an
   <li>
"unordered"
   <li>
list
</ul>
    List Header
  • this
    • is
    • a
  • "nested"
  • list
<ul>
   <lh>
List Header (optional)
   <li>
this
     <ul>
       <li>
is
       <li>
a
   </ul>
   <li>
"nested"
   <li>
list
</ul>
  1. this
  2. is
  3. an
  4. "ordered"
  5. list
<ol type="1" start="7">
   <li>
this
   <li>
is
   <li>
an
   <li>
"ordered"
   <li>
list
</ol>
    List Header
  1. this
  2. is
  3. an
  4. "ordered"
  5. list
<ol type="a" start="4">
   <lh>
List Header (optional)
   <li>
this
   <li>
is
   <li>
an
   <li>
"ordered"
   <li>
list
</ol>
Definition List
a list that includes terms followed by their definitions
Definition List
a list that includes terms followed by their definitions
<dl>
   <dt>
Definition List
      <dd>
a list that includes terms followed by their definitions
   <dt>
Definition List
      <dd>
a list that includes terms followed by their definitions
</dl>




<Previous | Webwork Table of Contents | Next>