HTML provides six levels of headings, from <h1> to <h6>.
Headings are used to define titles or subtitles that organize the content on a webpage.
<h1> represents the most important heading, and <h6> represents the least important.
<h1>Main Heading</h1>
<h2>Subheading</h2>
<h3>Section Title</h3>
<h4>Subsection</h4>
<h5>Minor Heading</h5>
<h6>Smallest Heading</h6>
<h1> for the main title of the page (only once).<h2> to <h6> to organize subtopics and content sections.Academy of Information Technology inside the <h1> tag.<html> <body> <h1>Academy of Information Technology</h1> </body> </html>
<h1> tag defines the most important heading on a page and should be used only once per page.
<h2> for main subtopic and <h3> / <h4> for sub-sections.<html> <body> <h2>About AIT</h2> <h3>Our Vision</h3> <h4>Courses Offered</h4> </body> </html>
<h2> to <h6> help structure document hierarchy for better user reading and SEO.
<h6>.<html> <body> <h5>Certifications Available</h5> <h6>Contact: info@aitaurangabad.com</h6> </body> </html>
<h6> tag represents the smallest and least important level of heading in HTML.