There are how many Heading Tagsa)3b)4c)5d)6Correct answer is option 'D...
Heading Tags in HTML:1.
h1: This is the highest level heading tag in HTML. It is used to define the main heading of a webpage. There should only be one
h1 tag per page. Example:
Main Heading
2.
h2: This tag is used to define subheadings within the main content. It is a lower level heading compared to
h1. Example:
Subheading
3.
h3: This tag is used for subheadings within
h2 tags. It is a lower level heading compared to
h2. Example:
Sub-subheading
4.
h4, h5, h6: These tags are used for further subheadings within the hierarchy.
h4 is a lower level heading compared to
h3,
h5 is a lower level heading compared to
h4, and so on. Example:
Sub-sub-subheading
Answer: D:
6
Explanation: HTML provides a total of 6 heading tags, ranging from
h1 to
h6. Each tag represents a different level of heading, with
h1 being the highest and
h6 being the lowest. Therefore, there are 6 heading tags in HTML.