Lists

This has nothing to do with pictures or images

HTML has tags for information you want to present in a list. There are two types of lists, ordered and un-ordered. The list tags are simple but there is a bit of typing.

Unordered Lists - each item will have a bullet point or dot

<ul>  (this tag gets the compute ready for a list)

    <li>an item on a list </li>
    <li>each item is opened and closed </li>
    <li>do you already hate lists> </li>
    
</ul> (the list is over)

Ordered Lists work EXACTLY The same way but have a different opening tag

<ol> get it OL for ordered list

    <li>Do this 1st </li>
    <li> Then do this </li>
    <li>Final Step </li>
    
</ol>    
    

Last updated