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

32번째 줄: 32번째 줄:


==같이 보기==
==같이 보기==
*[[HTML5 기본형태]]
*[[HTML5 section, header, footer, nav 예시]]
*[[HTML5 section 태그]]
*[[HTML5 section 태그]]
*[[HTML5 header 태그]]
*[[HTML5 header 태그]]
*[[HTML5 footer 태그]]
*[[HTML5 footer 태그]]
*[[footer]]
*[[HTML5 기본형태]]
*[[JQuery모바일 2페이지 파일분할]]
*[[JQuery모바일 2페이지 파일분할]]
*[[jQuery모바일 section, header, footer]]
*[[jQuery모바일 section, header, footer]]


[[분류: HTML5]]
[[분류: HTML5]]

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

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