Follow This Blog For more... 😊

Heading Tags Example

Heading Tags Example with output

Code:


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Heading tags Example</title>
    </head>
    <body>
        <!-- There are 6 heading tags -->
        <h1>This is h1 tag.</h1>
        <h2>This is h2 tag.</h2>
        <h3>This is h3 tag.</h3>
        <h4>This is h4 tag.</h4>
        <h5>This is h5 tag.</h5>
        <h6>This is h6 tag.</h6>
    </body>
    </html>

OUTPUT:





Comments

Popular Posts