웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)

HTML5 - hgroup 본문

html5

HTML5 - hgroup

jokack01 2011. 11. 10. 14:11

<!DOCTYPE html>
<html lang="ko">
<head>
 <meta charset="utf-8">
 <title>HTML5 - hgroup</title>
</head>
<body>

 <!--
  HTML5에서는 하나의 섹션에서 2개 이상의 제목을 사용할 경우,
  <hgroup>로 묶어줘야 합니다. 이유는 아웃라인 마크업 때문.

  division 요소를 뺀 나머지 section 요소에서는 다중 제목 사용시,
  묶어주셔야 합니다.
 -->
  
 <hgroup>
  <h1>body section - headline</h1>
  <h2>body section - sub headline</h2>
 </hgroup>
 
 <section>
  <hgroup>
   <h1>section - headine</h1>
   <h2>section - sub headline</h2>
  </hgroup>
 </section>

</body>
</html>

'html5' 카테고리의 다른 글

HTML5 Section  (0) 2011.11.10
html5. outline.hgroup  (0) 2011.11.10
HTML5 - nav  (0) 2011.11.10
HTML5 - header  (0) 2011.11.10
HTML5 - footer  (0) 2011.11.10