Learn HTML the programmer way

Step-by-step lessons with runnable examples. Build strong HTML fundamentals quickly.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Hello, HTML</title>
  </head>
  <body>
    <h1>Hello, world!</h1>
    <p>This is your first HTML page.</p>
  </body>
</html>
            

Curriculum