CodeAgeBy Sitezack
HTML & CSS for BuildersYour first web page0 XP
Chapter progress0/5

Lesson 3 of 5

Your top 3 list

<ul> creates a bulleted list, and each list item goes inside an <li> tag.

Lists are perfect for rankings, ingredients or inventories.

<ul>
  <li>Curious</li>
  <li>Fast</li>
</ul>

🎯 Your mission

Add a <ul> list with at least three <li>: your top 3 reasons to love it.

index.html
Loading editor…

Preview

Run your code to see your page here.