Skip to content

<h3> - Level 3 Heading

Block-level HTML 1.0

The <h3> element represents a third-level heading, used for subsections within <h2> sections. It helps create a clear content hierarchy and improves both readability and accessibility.

Result
<h3>Subsection Title</h3>

The <h3> element creates a subsection heading beneath <h2> sections, further organizing your content.

The <h3> element supports all global attributes like id, class, style, and lang.

<h3 id="installation" class="subsection">Installation</h3>
Result
Result
Result
Result

Always maintain proper heading hierarchy:

<h1>Main Title</h1>
<h2>Major Section</h2>
<h3>Subsection</h3>
<h3>Another Subsection</h3>
<h4>Minor Detail</h4>
<h2>Another Major Section</h2>
<h3>Subsection</h3>

You can use multiple <h3> elements under a single <h2>:

Result
Result

Ensure visual sizing matches semantic hierarchy:

Result
Result

Screen readers list headings for quick navigation:

<!-- Screen reader announces: "Heading level 3: Installation Steps" -->
<h3>Installation Steps</h3>

Make headings understandable out of context:

<h3>System Requirements</h3>
<h3>Installation Instructions</h3>
<h3>Troubleshooting Common Issues</h3>

Users can jump between headings using keyboard shortcuts. Clear hierarchy helps:

<h2>Chapter 1: Introduction</h2>
<h3>1.1 Overview</h3>
<h3>1.2 Prerequisites</h3>
<h3>1.3 Learning Objectives</h3>
<h2>Chapter 2: Getting Started</h2>
<h3>2.1 Installation</h3>
<h3>2.2 Configuration</h3>

Search engines use heading hierarchy to understand content structure:

<h1>Ultimate JavaScript Tutorial</h1>
<h2>JavaScript Basics</h2>
<h3>Variables and Data Types</h3>
<h3>Functions and Scope</h3>
<h3>Control Flow</h3>
<h2>Advanced JavaScript</h2>
<h3>Closures</h3>
<h3>Promises and Async/Await</h3>
<h3>Modules</h3>

Include relevant keywords naturally:

<h3>How to Install React for Beginners</h3>
<h3>React Components Tutorial</h3>
<h3>Managing State in React Applications</h3>
BrowserVersionNotes
Chrome1+Full support
Firefox1+Full support
Safari1+Full support
Edge12+Full support
IE3+Full support

The <h3> element has been supported since the earliest browsers.

Self-contained content with its own heading structure. Learn more →