Chapter 01

Getting to Know HTML

Structure & boilerplate. This page shows a short live preview and a checklist of points you will show to sir.

Lesson Content

HTML document structure: <!DOCTYPE html>, <html>, <head>, and <body>. Head contains metadata (title, meta), body contains visible content.

Code Example

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>My First Page</title>
  </head>
  <body>
    <h1>Chapter 1 Demo</h1>
    <p>Hello, web!</p>
  </body>
</html>
Next →