관리 메뉴


Kinesis´s Open Document

HTML5 - 001. 레이아웃 요소 본문

MEMO/기술 자료/HTML5

HTML5 - 001. 레이아웃 요소

Kinesis 2012. 9. 3. 22:16

 

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>무제 문서</title>
<script type="text/javascript">
</script>
</head>

<body>
<header>Header</header>
<nav>
	<ul>
		<li>Menu - 01</li>
		<li>Menu - 02</li>
		<li>Menu - 03</li>
	</ul>
</nav>
<aside>Side</aside>
<section>
	<hgroup>
		<h1>HTML5</h1>
		<h2>Self Training</h2>
	</hgroup>
    Section Body
<article>
	<h3>Article Header - 1</h3>
	Article Body
</article>
<article>
	<h3>Article Header - 2</h3>
	Article Body
</article>
<article>
	<h3>Article Header - 3</h3>
	Article Body
</article>


</section>
<aside>Side</aside>
<footer>Footer</footer>
</body>
</html>

 

  

'MEMO/기술 자료 > HTML5' 카테고리의 다른 글

HTML5 - 002. Mark, Time, Meter, Progress  (0) 2012.09.03


Comments