Report Bug
Qus : How many headings in HTML?
QusHTML में कितने हैडिंग टैग हैं?

A. 4
B. 7
C. 6
D. 5


Solution
C. 6



Explanation

html provide 6 levels of heading tag:

  • <h1>: Defines the highest level heading.
  • <h2>: Defines a second-level heading.
  • <h3>: Defines a third-level heading.
  • <h4>: Defines a fourth-level heading.
  • <h5>: Defines a fifth-level heading.
  • <h6>: Defines the lowest level heading.



Report Bug