HTML for Kids: A Beginner’s Course | HTML and CSS

Lists (Bullet Points and Numbers)

 

💡Topics:

  • Unordered lists (<ul>) and list items (<li>)

  • Ordered lists (<ol>)

 

Example:

 
<h2>My Shopping List</h2>
<ul>
  <li>Apples</li>
  <li>Milk</li>
  <li>Cookies</li>
</ul>

 

Activity:
Make two lists: one of your favorite games (unordered), and one of steps to brush your teeth (ordered).