HTML Headings

You can make headings in HTML by using the <h1></h1> tag. There are 6 heading tags. The higher the number the smaller the heading font size. You can customize the tags using CSS.

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

This would look as such:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Use headings to make important content stand out: use H1 tags for your website title and page title, and then use H2 tags for page headings and so on. This is good  for SEO and it also helps structure your website.