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

HTML5 Section 본문

html5

HTML5 Section

jokack01 2011. 11. 10. 14:15
<!DOCTYPE html>
<html lang="ko">
 <head>
  <meta charset="utf-8">
  <title>HTML5 Basic Template</title>
 </head>
 <body> <!-- ROOT(뿌리) Section element -->
 
  <section id="page-wrap">
   <!--
    body 내에서 어디에서든 사용 가능.
    <div>와 유사하나, 의미를 지닌다는 점이 차이.
   -->
   
   <section id="magazine">
    <section id="categories">
     <section>
      <!--
       section요소는 어디든 사용 가능.
       단, 인라인 요소 내부는 X
      -->
     </section>
    </section>
   </section>
   
  </section>
 
 </body>
</html>

'html5' 카테고리의 다른 글

HTML5 Video Player  (0) 2011.11.10
HTML5 - section root  (0) 2011.11.10
html5. outline.hgroup  (0) 2011.11.10
HTML5 - hgroup  (0) 2011.11.10
HTML5 - nav  (0) 2011.11.10