HTML Headings

<!DOCTYPE html>
<html>
<head>
<title>HTML Heading Example</title>
</head>
<body>

<h1>This is Heading (Most Important)</h1>
<h2>This is Heading</h2>
<h3>This is Heading</h3>
<h4>This is Heading</h4>
<h5>This is Heading</h5>
<h6>This is Heading (Least Important)</h6>

</body>
</html>


Learn More :