Computer Applications
List and define different types of heading tags.
HTML Intro
15 Likes
Answer
HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are typically displayed in larger and bolder fonts than normal body text.
The heading tags are as follows:
<H1>
<H2>
<H3>
<H4>
<H5>
<H6>
The first heading in a document is tagged <H1>
, the second heading is tagged as <H2>
and so on.
Answered By
6 Likes