120 XP
Beginner Path

Your Coding Journey

Five bite-size steps from zero to your first live web page.

Beginner Goals

  • Understand how the web works
  • Write your first HTML
  • Build a simple webpage
Estimated Duration 8–10 hours total
Progress0%

HTML Basics

HTML gives every page its skeleton. Learn the few tags that carry 90% of the web.

What is HTML? HTML (HyperText Markup Language) describes the structure of a page using elements. Most elements wrap content in an opening tag and a closing tag — like <h1> for big headings and <p> for paragraphs. Everything lives inside a single root element: <html>.

Example A complete first page

hello.html
<!DOCTYPE html>
<html>
  <head>
    <title>Hello</title>
  </head>
  <body>
    <h1>Hello, World!</h1>
  </body>
</html>

Learning objectives

  • Understand HTML structure — how tags nest inside <html>, <head> and <body>.
  • Use common tags — headings, paragraphs and titles.
  • Create headings and paragraphs that browsers can render instantly.

Practice: Your First Page

Time to write real code. Type in the editor and watch the preview update live.

  • 1Create an HTML page with a heading
  • 2Add a paragraph about yourself
  • 3Use the tags you just learned

Code Editor

index.html Auto-preview on

Preview

preview · index.html
Exercise Result

Great work!

You're making progress. Your page passed every check.

All tests passed!
3 of 3 checks complete
  • Page has an <h1> heading
  • Page has a <p> paragraph
  • Valid HTML structure
+10 XP
Lesson complete
Done