Monday, April 13, 2020

How to display headings in HTML ?

<!DOCTYPE html>

<html>
    <head>
        <meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
        <title>Hello, World!</title>
    </head>
    <body>
       
        Heading (H1 to H6) tags are used for displaying different size of headings.
        They are of six types from H1 to H2.
        H1 is largest and H6 is smallest in size.
       
        <h1>
            Hello, World!
        </h1>
       
        <h2>
            Hello, World!
        </h2>
       
        <h3>
            Hello, World!
        </h3>
       
        <h4>
            Hello, World!
        </h4>
       
        <h5>
            Hello, World!
        </h5>
       
        <h6>
            Hello, World!
        </h6>
       
    </body>
</html>

Output : 


No comments:

Post a Comment