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:
- Create an
<h3>titled “My Top 3 Foods.” - Use an
<ol>to list them 1, 2, 3. - Create an
<h3>titled “Things to pack for vacation.” - Use a
<ul>to list 3 items.
- Create an
