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 ul element.
  • Waiting: 2. You should have three li elements within your ul element.
  • Waiting: 3. Your ul element should have a closing tag.
  • Waiting: 4. Your li elements should have closing tags.
  • Waiting: 5. Your li elements should not contain an empty string or only white-space.
/**
* Your test output will go here
*/