Document Structure
Document Skeleton
The Browser Builds a Page
A minimal HTML document enters standards mode, declares a language, sets the browser title, and finally paints a heading.
Program
HTML is declarative: each element describes document structure and the browser turns that structure into rendered output.
document_skeleton.html
<!doctype html>
<html lang="en">
<head>
<title>Launch Checklist</title>
</head>
<body>
<h1>Launch Checklist</h1>
</body>
</html>
doctype
The doctype asks the browser to parse the document in standards mode.
document title
The title element updates browser chrome before body content is visible.