La etiqueta <hgroup> en HTML significa grupo de encabezado y se usa para agrupar los elementos del encabezado. La etiqueta <hgroup> en HTML se usa para envolver uno o más elementos de encabezado de <h1> a <h6>, como los encabezados y subtítulos. La etiqueta <hgroup> requiere la etiqueta inicial y la etiqueta final.
Nota: <hgroup> está en desuso de la especificación HTML5.
Sintaxis:
<hgroup> ... </hgroup>
Los siguientes ejemplos ilustran la etiqueta <hgroup> en HTML:
Ejemplo 1: Este ejemplo contiene el título y el subtítulo.
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>
Producción:
Ejemplo 2: este ejemplo contiene título, subtítulo y metadatos.
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>
Producción:
Navegadores compatibles:
- Google Chrome 5.0
- Internet Explorer 9.0
- Firefox 4.0
- Ópera 11.1
- Safari 5.0
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA