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

HTML5 - article 본문

html5

HTML5 - article

jokack01 2011. 11. 10. 11:57


<!DOCTYPE html>
<html lang="ko">
<head>
 <meta charset="utf-8">
 <title>HTML5 - article</title>
</head>
<body>
 
 <!--
  article은 section 요소와 유사하나,
  독립성을 띈다는 점이 차이가 있다.
  예) 어플리케이션의 독립된 팔레트, 위젯, 가젯 등
   블로그 엔트리, 잡지의 기사글.
 -->
 
 <article id="post-2011-04-23" class="post">
  <h1>Blog post headline</h1>
  <p>Blog contents</p>

  <section class="post_reple">
   <article>
    <p>reply contents 1</p>
   </article>
   <article>
    <p>reply contents 1</p>
   </article>
   <article>
    <p>reply contents 1</p>
   </article>
  </section>
  
 </article>

</body>
</html>

'html5' 카테고리의 다른 글

HTML5 - header  (0) 2011.11.10
HTML5 - footer  (0) 2011.11.10
HTML5 - aside  (0) 2011.11.10
HTML5 - using Division  (0) 2011.11.10
[html5] IE8 이하 브라우저  (0) 2011.11.10