DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

HTML Reference: Headings

Quick reference for Headings.

Read time: 1 min Words: 14
Open Playground → HTML My Progress

HTML Reference — Headings

Quick summary of Headings with syntax and example.

Syntax

<!doctype html> ...

Example

<!doctype html>
<html>
<head><meta charset="utf-8"><title>Hello</title></head>
<body>
  <h1>Hello HTML</h1>
  <p>This is a page.</p>
</body>
</html>