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 >
< hgroup >
< h1 >This is the title.</ h1 >
< h2 >This is sub-title.</ h2 >
</ hgroup >
</ body >
</ html >
|
Output:

Example 2: This example contains Title, Sub-Title, and Metadata.
HTML
<!DOCTYPE html>
< html >
< body >
< hgroup >
< h1 >This is the title.</ h1 >
< h2 >This is sub-title.</ h2 >
< p >This is the metadata.</ p >
</ hgroup >
</ body >
</ html >
|
Output:

Supported Browsers:
- Google Chrome 5.0
- Internet Explorer 9.0
- Firefox 4.0
- Opera 11.1
- Safari 5.0
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Mar, 2022
Like Article
Save Article