Create a Bulleted Unordered List
HTML has a special element for creating unordered lists, or bullet point style lists.
Unordered lists start with an opening <ul> element, followed by any number of <li> elements. Finally, unordered lists close with a </ul>.
For example:
<ul>
<li>milk</li>
<li>cheese</li>
</ul>
would create a bullet point style list of milk and cheese.
Remove the last two p elements and create an unordered list of three things that cats love at the bottom of the page.
Tests
- Waiting: 1. Create a
ulelement. - Waiting: 2. You should have three
lielements within yourulelement. - Waiting: 3. Your
ulelement should have a closing tag. - Waiting: 4. Your
lielements should have closing tags. - Waiting: 5. Your
lielements should not contain an empty string or only white-space.
/** * Your test output will go here */