My Learning Path
Overall progress40%

Keep going! You've got this!

Short, steady sessions beat marathon cramming. Finish one lesson today.

1 / 3

Exercise: Your first page

Use what you just learned to build a tiny, complete HTML document. Write your code in the editor, then run it to check your work against the tests.

Instructions

  1. Create a valid HTML document with a <title>.
  2. Add one <h1> heading inside the body.
  3. The heading text should say exactly “Hello, world!”

Output

index.html
1

Test results

The test expects the heading text to be exactly “Hello, world!” — with a comma and an exclamation mark, inside your <h1> tags.

Done