Unordered List

  List can consist of several layers

  Any object can be listed on the web with HTML document.

  List can be used under any items listed.

  Basic Expression

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

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