Unordered or bulleted lists are lists of items that can appear in any order.
Difficulty: Easy
Time Required: 5 minutes
Here's How:
- Start your list with the <ul> tag:
<ul>
- Your first list item starts with the <li> tag:
<ul>
<li> - Then write the text in the list item:
<ul>
<li>list item 1 - Close your list item:
<ul>
<li>list item 1</li> - Repeat steps 2 through 4 for each list item in your list.
- Close the list tag:
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>

