Ordered List

    HTML GUIDE INDEX
  1. Line Break and Paragraph Break
  2. Character Type and Size
    1. Size 1
    2. Size 2
  3. Universal Resource Locator - URL
  4. ANCHOR with URL
  5. Images in a document
    1. Image 1
    2. Image 2
    3. Image 3
  6. Link to other Web(text)

  Ordered List

  We can see numbers on the list.

  List can consist of several layers like unordered list.

  Unordered list use <ul> and </ul> TAGs.

  But, ordered list use <ol> and <ol> TAGs.

        <ol> Name of List
            <li> Item 1
            <li> Item 2
                <ol>
                    <li>Item2-1
                    <li>Item2-2
                    <li>Item2-N
                </ol>
            <li> Item 3
                <ol>
                    <li>Item3-1
                    <li>Item3-2
                    <li>Item3-3
                    <li>Item3-N
                </ol>
            <li> Item N
        </ol>
  You just input as follows in order to get the above result.

        <ol> HTML GUIDE INDEX
            <li> Line Break and Paragraph Break
            <li> Character Type and Size
                <ol>
                    <li> Size 1
                    <li> Size 2  
                </ol>
            <li> Universal Resource Locator - URL
            <li> ANCHOR with URL
            <li> Images in a document
                <ol>
                    <li> Image 1
                    <li> Image 2
                    <li> Image 3
                </ol>
        </ol>


  You can combine both types of list(ordered and unordered) in a main list of a document.

  Make a document showing the same as follows.

    HTML GUIDE INDEX
  1. Line Break and Paragraph Break
  2. Character Type and Size
    1. Size 1
    2. Size 2
  3. Universal Resource Locator - URL
  4. ANCHOR with URL
  5. Images in a document
  6. Link to other Web(text)