top of page

HEADINGS


Just like there are several different headings to choose from in a Google Doc, there are various heading elements in HTML: h1, h2, h3, h4, h5 and h6:

Heading output
Heading

A few things to remember about heading elements:

h1 tag is used only once

The h1 tag is used only for the main heading of the page.

Use the tags in order

Tags h2 to h6 can be used as often as desired, but they should always be used in order, as they were intended. 

Example

An h4 should be a sub-heading of an h3, which should be a sub-heading of an h2.

bottom of page