Skip to content

Challenge Create a Bulleted Unordered List

SaintPeter edited this page · 1 revision
Clone this wiki locally

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".

Something went wrong with that request. Please try again.