MODULE 1 · HTML Foundations
Reading · 12 min
HTML Document Structure
HTML Document Structure
HTML is a document language: elements describe the purpose and structure of information so browsers and assistive technologies can interpret it.
<!doctype html>
<html lang="en">
<head><meta charset="utf-8"><title>QEVANTI HTML</title></head>
<body><h1>Hello, HTML</h1><p>A meaningful document starts with structure.</p></body>
</html>KEY TAKEAWAYS
- HTML gives content structure.
- A valid document starts with a doctype.
- Meaningful elements help people and tools.
Reading material
MDN HTML guide
Official background reading for this topic.
Your progress is saved on this device. Sign in to keep it across devices.
