Headings in HTML5 with Example

htmlIn HTML5, there are 6 levels of headings.  Headings are nothing more than a big bold text which mainly used to represent topic of the article.  Example is given below of all 6 levels of headings.

<html>
<head>
<title>HTML5 Tutorials for Beginners </title>
</head>
<body>

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

</body>
</html>