HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress
HTML Tutorials

Overview

Headings in HTML come in the form of h1, h2, h3, h4, h5, and h6 tags. They are used to break up the text on your page into grouping for easier reading and better SEO.

A page should always contain an h1 if possible. Usually this will come in the form of what you used for the title of the page in the head of your document. See HTML – Basic Page Template for a brief explanation of the title tag.

				
					<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
				
			

Then, if you have enough text on the page to warrant having subheadings, they would come as h2, h3, h4, h5, and h6 tags. While your page should only contain one h1 heading, these subheadings can each be used as many times as necessary on the page. However, it is rare to need to use the full range of tags. You’ll find yourself using h2 and h3 the most frequently, and that will often suffice in breaking up your text.

Using Heading Tags as Page Structure

Think of the page structure as an outline of what you’re trying to say. The h1 heading may be the article name and you may have 3 subparts of equal value that are split up under their respective h2 headings, and each h2 may contain any number of h3 headings, and so on.

				
					<h1>Heading 1</h1>

<h2>Heading 2</h2>
<p>Text goes here.</p>
<h3>Heading 3</h3>
<p>Text goes here.</p>

<h2>Heading 2</h2>
<p>Text goes here.</p>
<h3>Heading 3</h3>
<p>Text goes here.</p>
<h3>Heading 3</h3>
<p>Text goes here.</p>

<h2>Heading 2</h2>
<p>Text goes here.</p>
<h3>Heading 3</h3>
<p>Text goes here.</p>
<h4>Heading 4</h4>
<p>Text goes here.</p>
				
			

By default browsers will display the headings in a text size going from largest h1 to smallest h6. However, you can change the sizing by using CSS to style the various headings to your liking.

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.