<h6> HTML Tag

In this article I will discuss <h6> tag of HTML
  • 1852

The HTML h6 tag is used for specifying level 6 headings. There are 6 levels of headings (h1 - h6) with h1 the most important and h6 the least important.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <h6>This article denote the h6 tag in HTML,which is the lowest of all(h1-h6) tags.</h6>

</body>

</html>

 

Output

This article denote the h6 tag in HTML,which is the lowest of all(h1-h6) tags.
Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

 

 

© 2020 DotNetHeaven. All rights reserved.