- <html> — the root element wrapping the entire document
- <head> — metadata: title, charset, linked stylesheets/scripts (not rendered as content)
- <body> — everything visible to the user
<html>
<head><title>Page Title</title></head>
<body>Content goes here</body>
</html>