Html heading tag H1 to H6 tags details with explain || Easy to learn || html

 Html heading tag H1 to H6 tags details with explain 

HTML heading tags are used to create headings or titles for different sections of a webpage. There are six heading tags available in HTML, ranging from <h1> to <h6>. Here's an explanation of each heading tag with an example:



    <!DOCTYPE html>
    <html lang="en">
    <head>
        <title>Document</title>
    </head>
    <body>
        <h1>hello heading </h1>
        <h2>hello heading </h2>
        <h3>hello heading </h3>
        <h4>hello heading </h4>
        <h5>hello heading </h5>
        <h6>hello heading </h6>
    </body>
    </html>




Post a Comment

1 Comments