Let’s Start with HTML
🎯 Objectives:
Learn how to build a simple web page using HTML
Understand HTML tags and structure
📘 Explanation:
HTML stands for HyperText Markup Language. It builds the structure of your web page using tags like <h1>, <p>, and <img>.
💻 Code Example:
html
Copy
Edit
<title>My First Page</title>
<h1>Hello, I’m learning to code!</h1>
<p>This is my very first website.</p>
🛠️ Exercise:
Create a simple HTML page with a heading and paragraph using an online editor like Replit or CodePen.

