Beginner Html Lessons (Version 2)

Lesson 4: The Shopping List (Lists)

Goal: Organizing information with bullet points. ESL Vocab: Order, List, Item, Bullet point, Numbered.

  • Concept:
    • UL = Unordered List (Bullet points •).
    • OL = Ordered List (Numbers 1, 2, 3).
    • LI = List Item (The actual things in the list).
  • The Syntax:HTML<ul> <li>Milk</li> <li>Cookies</li> </ul>
  • Hands-on Practice:
    1. Create an <h3> titled “My Top 3 Foods.”
    2. Use an <ol> to list them 1, 2, 3.
    3. Create an <h3> titled “Things to pack for vacation.”
    4. Use a <ul> to list 3 items.