"HTML5 section, header, footer 예시"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 HTML5 section, header, footer 문서를 HTML5 section, header, footer 예시 문서로 옮겼습니다)
(차이 없음)

2014년 8월 1일 (금) 00:42 판

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 }}