HTML Heading
Creating heading using the h1 -h6 tags. Each represents a level of section headings. HTML heading define with the <h1>..<h1> to <h6>..</h6> and heading tag are used to add heading to a webpage.
<h1> Heading Level 1</h1> <h2> Heading Level 2</h2> <h3> Heading Level 3</h3> <h4> Heading Level 4</h4> <h5> Heading Level 5</h5> <h6> Heading Level 6</h6>HTML Heading
Example:
<!DOCTYPE html> <html> <body> <h1> TutorialsMaterial </h1> <hr> <h2>About us</h2> <p> TutorialsMaterial is an online Web learning platform. TutorialsMaterial provide a guided,programming tutorials, hands-on coding experience and the latest news in the world of programming.tutorialsmaterials programming Tutorials : organized and easy to understand Web development tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more </p> </body> </html>
Output