Open In App

HTML <hgroup> Tag

Improve
Improve
Like Article
Like
Save
Share
Report

The <hgroup> tag in HTML stands for heading group and is used to group the heading elements. The <hgroup> tag in HTML is used to wrap one or more heading elements from <h1> to <h6>, such as the headings and sub-headings. The <hgroup> tag requires the starting tag as well as ending tag.

Note: <hgroup> is deprecated from HTML5 specification.
Syntax : 
 

<hgroup> ... </hgroup>

Below examples illustrate the <hgroup> tag in HTML:
Example 1: This example contains the Title and Sub-Title. 
 

HTML




<!DOCTYPE html>
 
<html>
 
    <body>
         <!--HTML hgroup tag starts here-->
            <hgroup>
                <h1>This is the title.</h1>
                <h2>This is sub-title.</h2>
            </hgroup>
         <!--HTML hgroup tag ends here-->
        </body>
         
 
</html>                   


Output: 
 

Example 2: This example contains Title, Sub-Title, and Metadata. 
 

HTML




<!DOCTYPE html>
 
<html>
 
    <body>
         <!--HTML hgroup tag starts here-->
         <hgroup>
            <h1>This is the title.</h1>
            <h2>This is sub-title.</h2>
             
 
<p>This is the metadata.</p>
 
 
        </hgroup>
        <!--HTML hgroup tag ends here-->
        </body>
         
 
</html>                   


Output: 
 

Supported Browsers: 

  • Google Chrome 5.0
  • Internet Explorer 9.0
  • Firefox 4.0
  • Opera 11.1
  • Safari 5.0

 



Last Updated : 17 Mar, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads