01 / 06
A bullet list is ul and li
You make a bullet list out of two tags working together.
<ul>… the container for the whole list<li>… each line, one item
You write the <li> inside the <ul>. That nesting is a big idea in HTML.
<ul> <li>apples</li> <li>oranges</li></ul>