🌱 Stage 1: HTML Basics (Beginner)

 

📘 1. What is HTML?

  • Definition: HyperText Markup Language

  • Purpose: Structure content on the web.

📘 2. Basic Structure of an HTML Document

html
<!DOCTYPE html> <html> <head> <title>My First Page</title> </head> <body> <h1>Hello World</h1> </body> </html>

✅ Practice: Create your first HTML file and open it in a browser.