Lesson 1: The Sandwich (HTML Structure)
Goal: Understand that every webpage needs a specific structure (Head & Body). ESL Vocab: Structure, Head, Body, Title, Open, Close.
- Concept: HTML is like a sandwich. You have a top bun (
<html>), the ingredients (<body>), and the bottom bun (</html>). - The Syntax: Explain that tags usually come in pairs:
<tag>(Start) and</tag>(End). - Hands-on Practice:
- Open VS Code. Create a file named
index.html. - Type the basic skeleton:HTML
<html> <body> Hello World! This is my first code. </body> </html> - Save and open the file in Chrome/Edge to see the result.
- Open VS Code. Create a file named
