what are all the headings tags? label the largest heading and the smallest heading. <h1> <h2> <h3> <h4> <h5>…

what are all the headings tags? label the largest heading and the smallest heading. <h1> <h2> <h3> <h4> <h5> <h6> correct the html by rewriting the html the correct way in the right column. <p> this is my paragraph <p> <hl>this is the largest heading <hl> <h2> this is the largest heading <h2> <p>this is a paragraph <p/>
Answer
Brief Explanations:
In HTML, there are six heading tags: <h1> - <h6>. <h1> is the largest and most important heading, while <h6> is the smallest. HTML tags should be properly opened and closed. For <p> (paragraph) tags, the closing tag should be </p>. For headings, the correct tags are <h1> - <h6> and they should be closed with </h1> - </h6> respectively.
Answer:
For heading tags:
<h1>: Largest heading<h2><h3><h4><h5><h6>: Smallest heading
For HTML correction:
<p> this is my paragraph </p><h1>this is the largest heading </h1><h2> this is a heading </h2><p>this is a paragraph </p>