Skip to main content

HTML

Live guides

The skeleton of every web page

HTML (HyperText Markup Language) describes the structure and meaning of web content — headings, paragraphs, links, images, and landmarks — so browsers and assistive tools know what each part of a page is.

Visual memory: HTML is the skeleton. CSS is the clothing. JavaScript is the muscle.

Concept graph: 142 interconnected HTML concepts — guides, interview, cheatsheet, projects, career, lessons, and glossary hang from this hub.

Your first structured page

Code
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hello HTML</title>
  </head>
  <body>
    <h1>Welcome</h1>
    <p>This page is structured with HTML.</p>
  </body>
</html>
Live output

Visual explanation

The browser reads tags, builds a document tree (DOM), then paints text. No CSS framework required for this structure.

Concept graph

Every concept knows its parents, children, prerequisites, related ideas, projects, and lessons — a real knowledge graph, not a flat page list.

Skills in this hub

  • Semantic HTML
  • Document Structure
  • Accessibility basics
  • Forms & tables

Visual guides