Hello Coders!
This thread is to help you understand, identify and create the header tags used in HTML (h1,h2.. etc). There are a total of 6 header tags that range from h1 (largest) to h6 (smallest). A heading tag requires an opening tag <h1> and a closing tag </h1> within content in between the. Some examples are below:

This thread is to help you understand, identify and create the header tags used in HTML (h1,h2.. etc). There are a total of 6 header tags that range from h1 (largest) to h6 (smallest). A heading tag requires an opening tag <h1> and a closing tag </h1> within content in between the. Some examples are below:
HTML:
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
