HTML Tutorial

If you want to add titles or subtitles to your webpage, you can use these HTML headings. 

Example

Heading One

Heading Two

Heading Three

Heading Four

Heading Five
Heading Six

We can define these HTML headings with tags including

<h1>
<h2>
<h3>
<h4>
<h5>
<h6>

<h1> is the highest section level and <h6> is definitely the lowest. 

Example

<h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>
<h5>Heading Five</h5>
<h6>Heading Six</h6>