- HTML5 section, header, footer
1 주요 코드[ | ]
html
Copy
<section id='page1'>
<header><h1>제목</h1></header>
<div class='content'>
<p>첫번째 페이지</p>
</div>
<footer><h1>jmnote</h1></footer>
</section>
2 예제[ | ]
html
Copy
<!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 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.