BASIC HTML 101

Overall HTML format: Lists



The Definition List, named <DL> in HTML, is used to display a term and its definition:

First Term is specified by <DT>
Term Definition is specified by <DD>
Second Term is specified by <DT>
Term Definiton is specified by <DD>

Netscape uses this style in the bookmark file

link1 (yes, Netscape inserts <P>'s for spacing)
link2
link3

another link

Netscape even nests lists within lists to get indention

link
link
comment
link

another level of indention

link
link

</DL> ends the Definition List.






(rest of this page intentionally left blank)







Lists are formatted by using the <UL> style for unordered lists and the <OL> style for ordered (numbered) lists.

The <UL> (unordered) styleThe <OL> (ordered) style
sourcedisplayedsourcedisplayed
<ul>
    <li>Item one
    <li>Item two
    <li>Item three
</ul>
  • Item one
  • Item two
  • Item three
<ol>
    <li>Item one
    <li>line two
    <li>line three
</ol>
  1. Item one
  2. Item two
  3. Item three

The <UL> (unordered) styleThe <OL> (ordered) style
sourcedisplayedsourcedisplayed
<ul>
    <li>Item one
    <li>Item two
    <li>Item three
</ul>
  • Item one
  • Item two
  • Item three
<ol>
    <li>Item one
    <li>line two
    <li>line three
</ol>
  1. Item one
  2. Item two
  3. Item three

















(rest of this page intentionally left blank)








The <UL> (unordered) styleThe <OL> (ordered) style
sourcesource
<ul>
  <li>Item one
  <ul>
    <li>Item one prime
      <ul>
        <li>Item one double prime
          <ul>
            <li>Item one triple prime
               <ul>
                 <li>Item one quadroble prime
                 <li>Item two quadroble prime
                 <li>Item three quadroble prime
                </ul>
            <li>Item two triple prime
            <li>Item three triple prime
          </ul>
        <li>Item two double prime
        <li>Item three double prime
      </ul>
    <li>Item two prime
    <li>Item three prime
  </ul>
  <li>Item two
  <li>Item three
</ul>
  
<ol>
  <li>Item one
  <ol>
    <li>Item one prime
      <ol>
        <li>Item one double prime
          <ol>
            <li>Item one triple prime
              <ol>
                <li>Item one quadroble prime
                <li>Item two quadroble prime
                <li>Item three quadroble prime
               </ol>
             <li>Item two triple prime
           <li>Item three triple prime
         </ol>
         <li>Item two double prime
        <li>Item three double prime
      </ol>
    <li>Item two prime
    <li>Item three prime
  </ol>
  <li>Item two
   <li>Item three
</ol>
  

The <UL> (unordered) styleThe <OL> (ordered) style
displayeddisplayed
  • Item one
    • Item one prime
      • Item one double prime
        • Item one triple prime
          • Item one quadroble prime
          • Item two quadroble prime
          • Item three quadroble prime
        • Item two triple prime
        • Item three triple prime
      • Item two double prime
      • Item three double prime
    • Item two prime
    • Item three prime
  • Item two
  • Item three
  1. Item one
    1. Item one prime
      1. Item one double prime
        1. Item one triple prime
          1. Item one quadroble prime
          2. Item two quadroble prime
          3. Item three quadroble prime
        2. Item two triple prime
        3. Item three triple prime
      2. Item two double prime
      3. Item three double prime
    2. Item two prime
    3. Item three prime
  2. Item two
  3. Item three



BASIC HTML 101 
 Hyperlinks and Anchors


Page provided by D*R*A's Monterey Office.

This page is maintained by RUSSELL HOLDER and does not represent any views or policies of and is not affiliated in any way with my employer.

Last update: 03APR98 0644HRS RAZ

Russell@dra.com