Home | Computer Science

<
H1 TAGS

Defination

These tags are used to define HTML headings.


HEADINGS There are six types of Headlines.
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