Document structure
Every page has the same skeleton. The head describes the document, the body holds what a visitor sees.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page title</title>
</head>
<body>
<h1>Hello</h1>
</body>
</html>- The doctype tells the browser to use modern standards.
- lang lets screen readers pronounce the page correctly.
- Without the viewport tag, phones render the page at desktop width.