Practice ยท 1 of 4
Build a Minimal Document
Write the smallest complete HTML page: a doctype, an html element with lang, a head containing the charset meta, and a body with one paragraph saying hello.
Rules:
- Include the doctype declaration.
- The html tag declares lang="en".
- The head contains <meta charset="UTF-8">.
- The body contains one <p>.
Difficulty: beginner
Press Submit to check your solution.
Back to lesson: Practice: Document Structure Drills