HTML Reference: Headings
Quick reference for Headings.
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>