← HTML tutorial

HTML

Build Your First Page

You've now met headings, paragraphs, links, images, lists, tables, forms, and semantic tags. This capstone example combines several of them into one small, realistic page — a personal portfolio — so you can see how they actually work together rather than in isolation.

What to notice as you read this

The page uses exactly one <h1> (the name), semantic <header>/<main>/<footer> sections instead of unlabeled <div>s, a real <ul> for the project list since order doesn't matter there, and a labelled form input rather than bare placeholder text. Every choice traces back to a lesson you've already read — that's deliberate: real pages are built by combining a small number of well-understood pieces, not by learning some separate "how to build a whole page" trick.

Edit the example freely and see what breaks — nothing will, it's a sandbox. From here, our tutors' full HTML/CSS course goes further: real layouts, styling every element you've just learned, and building complete, responsive pages.

Try it yourself