HTML/CSS - 7
HTML/CSS - 7: Lists
Learn how to organize content with lists! Create ordered and unordered lists, and try nesting them.
👀 Show Solution
<ol> <li>First item</li> <li>Second item</li> </ol> <ul> <li>Item one</li> <li>Item two</li> </ul>

HTML/CSS - 7: Lists
Learn how to organize content with lists! Create ordered and unordered lists, and try nesting them.
<ol> <li>First item</li> <li>Second item</li> </ol> <ul> <li>Item one</li> <li>Item two</li> </ul>