•Heading tags are container tags (closing tags are must)
•There are 6 levels of HTML tags ranging from h1 to h6
•h1 is the biggest
<h1> </h1>
<h2> </h2>
.
.
<h6> </h6>
👉🏻Example
heading 1
heading 2
heading 6
💡Quick Tip
A page should only ever have one <h1> tag. This tag is reserved for the main title of the page (e.g., your portfolio name or the title of your blog post).
Top comments (0)