HTML/CSS - 7

HTML/CSS - 7: Lists

Learn how to organize content with lists! Create ordered and unordered lists, and try nesting them.

✦ HTML Editor
▶ Live Output

👀 Show Solution
<ol>
  <li>First item</li>
  <li>Second item</li>
</ol>

<ul>
  <li>Item one</li>
  <li>Item two</li>
</ul>