How to create HTML Order List & Unorder List

What is HTML Order List?

An order list is denoted by <ol>. This will utilize different plans of numbers to list your things.

Example:

Example of an order list tag in notepad++:

HTML Order List tag

Sample Example:

<!DOCTYPE HTML>
<html>
    <head>
        <title>HTML LIST</title>    
    </head>
    <body>
        <ul>
            <li>order list 1</li>
            <li>order list 2</li>
            <li>order list 3</li>
            <li>order list 4</li>
            <li>order list 5</li>
        </ul> 
    </body>
</html>

After processing in browser:

HTML order list tag

What is HTML Unorder List?

An unorder list is denoted by <ul> . This will list things utilizing plain slugs.

Example:

Example of an unorder list tag in notepad++:

HTML unorder list tag

Sample Example:

<!DOCTYPE HTML>
<html>
    <head>
        <title>HTML LIST</title>    
    </head>
    <body>
        <ul>
            <li>unorder list 1</li>
            <li>unorder list 2</li>
            <li>unorder list 3</li>
            <li>unorder list 4</li>
            <li>unorder list 5</li>
        </ul> 
    </body>
</html>

After processing in browser:

HTML unorder list tag

Hope, you will be helped by this post. For more information, stay with us & give your opinions. For contact  Email: [email protected].