Day 5: Unordered Lists
HTML Masterclass
Current Task
Objective
Let's make a grocery list using unordered (bulleted) lists.
Step 1: Create a <ul> container.
Step 2: Inside it, add three list items using the <li> tag.
Step 3: Fill them with "Apples", "Bananas", and "Cherries".
index.html
<ul>
<li>Apples</li>
<li>Bananas</li>
<li>Cherries</li>
</ul>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview