CAPSTONE — WEBSITE 101
Lesson 5 — The Live Code Builder
Beginner / Free Track
How this works: Complete 5 tasks in order — each one unlocks the next. Type every character. No copy-paste. When all 5 are done, your completed page appears and the sandbox opens.
01
● PENDING
Add a heading with your name
Type:
<h1>Your Name</h1>
02
○ LOCKED
Add a paragraph about yourself
Type:
<p>Something about you</p>
03
○ LOCKED
Add a link to your favourite site
Type:
<a href="https://...">Link text</a>
04
○ LOCKED
Add an image
Type:
<img src="https://..." alt="description">
05
○ LOCKED
Wrap it in a full HTML document
Add
<!DOCTYPE html>, <head>, <title>, and <body>// SANDBOX MODE — BUILD ANYTHING
SOURCE — TYPE FROM SCRATCH
LIVE RENDER
🎉 You built a real webpage.
Every element on that page was typed by you — structure, content, links, images, a full valid HTML document. That is exactly how every website on the internet is made. The sandbox is now open. Build anything.