HEADINGS There are six types of Headlines.
- H1
- H2
- H3
- H4
- H5
- H6
- Hr ( Syntax is different )
Syntax of Headlines is
<h1>
..........Text............
</h1>
Program
INPUT
<html> <head> <body> <hr> <h1>......Text......</h1> <h2>......Text......</h2> <h3>......Text......</h3> <h4>......Text......</h4> <h5>......Text......</h5> <h6>......Text......</h6> <hr> </body> </html>
OUTPUT
![]()