-->

HTML with hgroup tag

<html>
<head>
<title>
heading tags
</title>
</head>
<body>
        <hgroup><!-- it is used for multilevel headings-->
<h1>first heading</h1><!--first heading-->
<h2>second heading</h2><!--second heading-->
<h3>third heading</h3><!--third heading and son on-->
<h4>forth heading</h4>
<h5>fifth heading</h5>
<h6>sixth heading</h6>
       </hgroup>
</body>
</html>
---------------------------------------------------------
note: for better result we have to use css. We will use in css unit.

HTML headings

If we want to use heading in our page then we use
->h1 to h6
h1 is the biggest in size
h6 is smallest in size.
->somewhere we can also use hgroup tag.
-------------------------------------------------------------------------------------
1) Let's know about h1 to h6 headings
                                                            know it

2)LEt's know about <hgroup> tag

                                                              know it

HTML headings


-----------------------------------------------------------------------------------------------
<html>
<head>
<title>
heading tags
</title>
</head>
<body>
<h1>first heading</h1><!--first heading-->
<h2>second heading</h2><!--second heading-->
<h3>third heading</h3><!--third heading and son on-->
<h4>forth heading</h4>
<h5>fifth heading</h5>
<h6>sixth heading</h6>
</body>
</html>
 ------------------------------------------------
note:This heading has no attribute. But can be used with CSS.
------------------------------------------------------------------------------------------