Lists

If you want to organize data, one of the best ways is to use lists. The syntax is

            
<h3>List name<h3>
<ul>
    <li>Item 1</li>     
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>            
</ul>

            
        

You can have as many items as you want, but in this example I used 5. Also, li stands for list item and ul stands for unordered list. If you want to order your list you can do this:

            
<h3>List name<h3>
<ol type="a">
    <li>Item 1</li>     
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>            
</ol>

            
        

There are many types of lists. Here are all of them.

            
<ol type="a"></ol>
<ol type="A"></ol>
<ol type="I"></ol>
<ol type="i"></ol>
<ol type="1"></ol>
            
        

You can expirement with the lists. Here is an example: