<heading> Tag in HTML

In this article i am going to explain about heading tag in HTML
  • 1514

Definition

<h1> to <h6> is an heading tag. h1 tag being the highest tag and h6 tag being the lowest tag.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<head>
    <title></title>
</head>
<body>
    <h1>
        Heading1</h1>
    <h2>
        Heading2</h2>
    <h3>
        Heading3</h3>
    <h4>
        Heading4</h4>
    <h5>
        Heading5</h5>
    <h6>
        Heading6</h6>
</body>
</html>

Output

headin3.jpg

Further Readings

You may also want to read these related articles

 Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.