HTML Basics

HTML Introduction HTML Basic HTML Comments HTML Tags/Elements HTML Attributes HTML Formatting HTML Block and Inline HTML Charsets HTML Classes HTML Colors HTML Div HTML Headings HTML Id HTML Iframes HTML Images HTML File Paths HTML Tables HTML Layout HTML Lists HTML Links <a> HTML Paragraphs HTML Quotations HTML JavaScript HTML Emojis HTML URL Encode HTML Entities HTML Computercode HTML Symbols HTML Styles

HTML Forms

HTML Forms HTML Form Elements HTML Form Attributes HTML Input Attributes HTML Input Regex HTML Input Form Attributes HTML Input Types

HTML SEO

HTML Head HTML Page Title HTML Responsive HTML Semantics HTML Favicon

HTML Graphics

HTML Canvas HTML SVG

HTML Media

HTML Media HTML Audio HTML Video

HTML Reference

a abbr acronym address applet area article aside audio b base basefont bdi bdo big blockquote body br button canvas caption center cite code col colgroup data datalist dd del details dfn dialog dir div dl DOCTYPE dt em embed fieldset figcaption figure font footer form frame frameset h1_-_h6 head header hgroup hr html i iframe img input ins kbd label legend li link main map mark menu meta meter nav noframes noscript object ol optgroup option output p param picture pre progress q rp rt ruby s samp script search section select small source span strike strong style sub summary sup svg table tbody td template textarea tfoot th thead time title tr track tt u ul var video wbr

HTML <hgroup> Tag

The <hgroup> tag is used to group multiple heading elements (<h1> to <h6>) within a single parent element. This allows you to style and manipulate a group of headings as a single unit, rather than individually.

Usage of <hgroup> Tag:

Here is an example of how to use the <hgroup> tag in HTML:

<hgroup>
  <h1>Main Heading</h1>
  <h2>Subheading</h2>
</hgroup>

In this example, the <h1> element represents the main heading, and the <h2> element represents the subheading. By wrapping them in an <hgroup> tag, you can style them together.

Main Attributes of <hgroup> Tag:

Attribute Description
align Specifies the alignment of the content within the <hgroup> tag. Possible values: left, center, right
title Provides a title or label for the content within the <hgroup> tag

Here is an example of using the align attribute:

<hgroup align="center">
  <h1>Centered Heading</h1>
  <h2>Subheading</h2>
</hgroup>

And here is an example of using the title attribute:

<hgroup title="Group Heading">
  <h1>Main Heading</h1>
  <h2>Subheading</h2>
</hgroup>

Experiment with the <hgroup> tag to see how it can help you group and style headings in your HTML documents.