top of page
HTML5.png

HTML

HEADING TAG

  • Any document starts with a heading.

  • We can use different size of the heading at different place according to the requirement.

  • HTML has six types of heading tag such as: <h1>, <h2>, <h3>, <h4>, <h5>, <h6> .

  • Lower the heading number larger the heading size.

  • Example :-                         

<html>

<head>

<title> HEADING TAG EXAMPLE </title>

</head>

<body>

<h1> THIS IS HEADING 1 </h1>

<h2> THIS IS HEADING 2 </h2>

<h3> THIS IS HEADING 3 </h3>

<h4> THIS IS HEADING 4 </h4>

<h5> THIS IS HEADING 5 </h5>

<h6> THIS IS HEADING 6 </h6>

</body>

</html>

​

OUTPUT:

headTag.JPG

Related Topics

bottom of page