HTML5 section, header, footer 예시

(HTML5 section, header, footer에서 넘어옴)
HTML5 section, header, footer

1 주요 코드[ | ]

<section id='page1'>
  <header><h1>제목</h1></header>
  <div class='content'>
    <p>첫번째 페이지</p>
  </div>
  <footer><h1>jmnote</h1></footer>
</section>

2 예제[ | ]

<!DOCTYPE html>
<meta charset="utf-8" />
<head>
  <title>HTML5 섹션 예제</title>
</head>
<body>
  <section id='page1'>
    <header><h1>제목</h1></header>
    <div class='content'>
      <p>첫번째 페이지</p>
    </div>
    <footer><h1>jmnote</h1></footer>
  </section>
</body>

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}