How Many Types Of Headings Supported By HTML

admin_img Posted By Bajarangi soft , Posted On 29-09-2020

HTML headings are titles or subtitles that you want to display on a web page,HTML headings are defined with the h1 to h6 tags< >,headings to index the structure and content of your web pages,It is important to use headings to show the document structure.

HTML Headings

1.HTML Headings

<!DOCTYPE html>
<html>
<head>
<title> html headings</title>
</head>

<body>

<h1>Hello Goodmorning</h1>
<h2>Hello Goodmorning</h2>
<h3>Hello Goodmorning</h3>
<h4>Hello Goodmorning</h4>
<h5>Hello Goodmorning</h5>
<h6>Hello Goodmorning</h6>

</body>
</html>

Related Post