hgroup

설명
헤딩과 설명글<p>을 묶음. 부제목
Primary
content category
heading
 
<hgroup> 요소는 제목보조 콘텐츠를 그룹화하는 데 사용됩니다.
  • 보조 콘텐츠란 부제목, 대체 제목 또는 태그라인 등을 의미합니다.
  • 보조 콘텐츠는 <hgroup> 안에 <p> 요소로 표현될 수 있습니다.
 
notion image
(스타일링은 따로 한 거임)
 
<!doctype html> <title>HTML Standard</title> <body> <hgroup id="document-title"> <h1>HTML: Living Standard</h1> <p>Last Updated 12 July 2022</p> </hgroup> <p>Some intro to the document.</p> <h2>Table of contents</h2> <ol id="toc"> … </ol> <h2>First section</h2> <p>Some intro to the first section.</p> </body>
notion image