- 1. How many levels of headings are there in HTML?
-
ANS:- There are 6 levels of HTML headings, from large heading to small. A simple diagram is given below:-
- 2. How can we add headings to our HTML page?
-
We can simply add headings to our HTML page by adding:-
<h1>
for heading 1 (The largest heading),
<h2>
for heading 2,
<h3>
for heading 3 (The medium heading),
<h4>
for heading 4,
<h5>
for heading 5 and
<h6>
for heading 6 (The smallest heading)