Heading type is very important for any website. HTML also 6 types of headings available every one different size.
- <h1> - Heading one
- <h2> - Heading two
- <h3> - Heading three
- <h4> - Heading four
- <h5> - Heading five
- <h6> - Heading six
Now we are checking the Heading Tags program in HTML.
<html>
 <head>
 <title>Coding Request</title>
 </head>
 <body>
    <h1>Heading one</h1>
    <h2>Heading two</h2>
    <h3>Heading three</h3>
    <h4>Heading four</h4>
    <h5>Heading five</h5>
    <h6>Heading six</h6>
 </body>
</html>
Coding View in Notepad++
Noteped++ Download link here https://notepad-plus-plus.org/downloads/
Image 1
Some coding meaning here
- <title>.............</title> - Your title place
- <h1>...............</h1> - Heading place

