CODE PATH
PRO ACCOUNT

Master Code
On The Go

Learn. Practice. Build.

Quest 1 • Lesson 1

Building Your First Header

Think of HTML as the skeleton of a house. Before we paint the walls (CSS), we need to put up the structure.

"Every web page starts with a simple set of tags that tell the browser what is a header and what is a paragraph."
index.html
<h1>Hello World</h1>
<p>This is my first web page.</p>

🧠 Understanding the Tags

Most HTML elements have an opening tag <tag> and a closing tag </tag>. The content goes in between.

✨ Challenge: Create Your Own Header

Change the text inside the <h1> to your name, and the paragraph to a short introduction.

<h1>Your Name Here</h1>
<p>I'm learning HTML and this is my first page!</p>

❤️ Support Free Education

This course is 100% free. If it helps you, consider buying me a coffee.

☕ Buy Me a Coffee

➡️ Ready for more?

Next lesson: Links & Navigation – connect pages together.

Continue to Lesson 1.2 →

(Coming soon – check back or buy Pro Pack for instant access)