{{define "main-page"}}
Hands-on lessons, short quizzes and tiny exercises.
In this short interactive tutorial you'll learn what HTML is, try a quick quiz, and write your first <h1> tag.
{{end}} {{/* --- Short lesson node --- */}} {{define "what-is-html"}}
HTML stands for HyperText Markup Language. It's the language used to describe the structure of web pages using tags such as <h1>, <p>, <a> and others.
Choose the best answer:
Finish the HTML snippet so the page shows a heading that reads Hello World.
<!doctype html>
<html>
<body>
{{printf "%s" ""}}
</body>
</html>
{{.Explanation}}
Try again or review the lesson.
{{.Output}}
{{.Error}}