Lists

Ordered Lists

<ol type=t start=#>
type=i i, ii, iii
type=I I, II, III
type=a a, b, c
type=A A, B, C
type=1 1, 2, 3
start=# Initial value
Always a number regardless of the type
<u>Example #1</u>
<ol>
    <li>Line #1</li>
    <ol>
        <li>Line #1a</li>
        <li>Line #1b</li>
    </ol>
    <li>Line #2</li>
</ol>
Example #1
  1. Line #1
    1. Line #1a
    2. Line #1b
  2. Line #2
<u>Example #2</u>
<ol type=I>
    <li>Point #1</li>
    <ol type=A>
        <li>Subpoint #1</li>
        <li>Subpoint #1</li>
    </ol>
    <li>Point #2</li>
</ol>
Example #2
  1. Point #1
    1. Subpoint #1
    2. Subpoint #2
  2. Point #2

Return to HTML index

Unordered Lists

<ul type=t>
  1. type=circle
  1. type=disc
  1. type=square
<u>Example</u>
<ul>
    <li>Line #1</li>
    <ul>
        <li>Line #1a</li>
        <li>Line #1b</li>
    </ul>
    <li>Line #2</li>
</ul>
Example
  • Line #1
    • Line #1a
    • Line #1b
  • Line #2

Return to HTML index

(person at terminal) HTML index, Free software

(house)  Rick’s home page with index or without index

Last Updated: $Date: 2001/11/04 00:35:48 $ GMT ($Revision: 1.2 $)