HTML Lists

TOC

Web page:Markup:
  • this
  • is
  • an
  • "unordered"
  • list
<ul>
  <li>this</li>
  <li>is</li>
  <li>an</li>
  <li>"unordered"</li>
  <li>list</li>
</ul>
 
    List Header (Optional)
  • this
    • is
    • a
  • "nested"
  • list
<ul>
  <lh>List Header</lh>
  <li>this
  <ul>
    <li>is</li>
    <li>a</li>
  </ul></li>	
  <li>"nested"</li>
  <li>list</li>
</ul>
 
  1. this
  2. is
  3. an
  4. "ordered"
  5. list
<ol type="1" start="7">
  <li>this</li>
  <li>is</li>
  <li>an</li>
  <li>"unordered"</li>
  <li>list</li>
</ol>
 
Definition List
A list that includes terms followed by their definitions
Definition List
It can be used also for formating topics or listing references or a bibliography
<dl>
  <dt>Definition List</dt>
  <dd>A list that includes terms followed 
by their definitions</dd> <dt>Definition List</dt> <dd>It can be used also for formating
topics or listing references
or making a bibliography</dd> </dl>

<< Basic HTML Text Formatting | Index | Hypertext Links (Anchors) >>