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.
Syntax :
<hgroup> ... </hgroup>
Below examples illustrate the <hgroup> tag in HTML:
Example 1: This example contains the Title and Sub-Title.
<!DOCTYPE html> < html > < head > < title >HTML hgroup Tag</ title > </ head > < 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.
<!DOCTYPE html> < html > < head > < title >HTML hgroup Tag</ title > </ head > < 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: The browsers which are supported by <hgroup> tag are listed below:
- Apple Safari 4.1+
- Google Chrome 5+
- Firefox 4+
- Opera 11.1+
- Internet Explorer 9+
leave a comment
0 Comments