List Format

There are two types of list.

1. An Unordered List

In this we can show the list in 3 type formats. Disk, Circle and Square. 

By default this take Disk first and then Circle. If you want to show again by default then square.

<h2>An Unordered List</h2>
    <ul>
        <li>This is first item of Unordered list.</li>
        <li>This is second item of unordered list.</li>
        <li>This is third item fo unorederd list.</li>
        <li>
            <ul>
                <li>Hello</li>
                <li>World</li>
                <ul>
                    <li>Marathi</li>
                    <li>Tamil</li>
                    <li>
                        <ul>
                            <li>Indian</li>
                            <li>Hindustan</li>
                        </ul>
                    </li>
                </ul>
            </ul>
        </li>
    </ul>

2. An Ordered List

In this we can show the list in 5 type formats. 1, I, i, A, and a.

By default it's always take (1) this format by default.

<h2>An Ordered List</h2>
    <ol>
        <li>This is first itme of orderd list.</li>
        <li>This is second item of orderd list.</li>
        <li>This is third item of orderd list.</li>
        <li>
            <ol type="A">
                <li>Jai Hind</li>
                <li>
                    <ol>
                        <li>Vande Matrama</li>
                    </ol>
                </li>
            </ol>
        </li>
    </ol>

You can also see web page by Live server.

Comments

Popular posts from this blog

command

The code of Loading in Html with Css

A Smile 😊 Codes in Html with Css