HTML - <h1> to <h6> Tags



The HTML heading tags define six levels of heading, that is, <h1> to <h6>. where <h1> indicates the most important heading, and <h6> indicates the least important heading.

The heading tag also helps to give the title and subtitle at the top of the page or anywhere on the page. It is important to use the heading to show the document's structure.

<h1> headings should be used for main headings, followed by <h2> headings, then the less important <h3>, and so on.

Syntax

Following is the syntax of the heading tag <h1> to <h6> −

<!DOCTYPE html>
<html>
<body>
   <h1>…</h1>
   <h2>…</h2>
   <h3>…</h3>
   <h4>…</h4>
   <h5>…</h5>
   <h6>…</h6>
</body>
</html>

Example

In the following example, we are creating an HTML page that will show the important heading of the page, i.e., the <h1> and <h2> tags.

<!DOCTYPE html>
<html>
<body>
   <h1>This is heading 1</h1>
   <h2>This is heading 2</h2>
   <h1>Tutorialspoint</h1>
</body>
</html>

When we run the above code, it will generate an output consisting of the heading text that is written in h1 and h2 tags.

Example

Considering the following example, where we are going to create an HTML document using the the <h3> and <h4> tags.

<!DOCTYPE html>
<html>
<body>
   <h3>This is heading 3</h3>
   <h4>This is heading 4</h4>
   <h3>Tutorialspoint</h3>
</body>
</html>

On running the above code, the output window will pop up displaying the heading text of the h3 and h4 tags on the webpage.

Example

Let's look at the following example , We are going to create HTML documents using the h5 and h6 tags indicating that the heading of the page is least important.

<!DOCTYPE html>
<html>
<body>
   <h5>This is heading 5</h5>
   <h6>This is heading 6</h6>
   <p>The above heading is h5 and h6</p>
</body>
</html>

When we run the above code, it will generate an output consisting of the text displayed on the webpage.

html_tags_reference.htm
Advertisements