Solve problem "Create a Bulleted Unordered List" online - Learn Python 3 - Snakify

Lesson: HTML5 and CSS

Create a Bulleted Unordered List

HTML has a special element for creating unordered lists, or bullet point-style lists.

Unordered lists start with a <ul> element. Then they contain some number of <li> elements.

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.


The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.