출처 : http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_html5_skeleton



<!DOCTYPE html>

<html lang="en">

<head>

<title>HTML5</title>

<meta charset="utf-8">


<!--[if lt IE 9]>

<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">

</script>

<![endif]-->


<style>

body {font-family: Verdana, sans-serif; font-size:0.8em;}

header, nav, section, article, footer

{border:1px solid grey; margin:5px; padding:8px;}

nav ul {margin:0; padding:0;}

nav ul li {display:inline; margin:5px;}

</style>

</head>


<body>


<header>

<h1>HTML5 Skeleton</h1>

</header>


<nav>

<ul>

  <li><a href="html5_semantic_elements.asp">HTML5 Semantic</a></li>

  <li><a href="html5_geolocation.asp">HTML5 Geolocation</a></li>

  <li><a href="html5_canvas.asp">HTML5 Graphics</a></li>

</ul>

</nav>


<section>


<h2>Famous Cities</h2>


<article>

<h2>London</h2>

<p>London is the capital city of England. It is the most populous city in the United Kingdom,

with a metropolitan area of over 13 million inhabitants.</p>

</article>


<article>

<h2>Paris</h2>

<p>Paris is the capital and most populous city of France.</p>

</article>


<article>

<h2>Tokyo</h2>

<p>Tokyo is the capital of Japan, the center of the Greater Tokyo Area,

and the most populous metropolitan area in the world.</p>

</article>


</section>


<footer>

<p>&copy; 2014 W3Schools. All rights reserved.</p>

</footer>


</body>

</html>



'html5' 카테고리의 다른 글

푸터 고정 템플릿  (0) 2014.05.20
기본 템플릿  (0) 2014.05.12

초간단한 방법으로 

푸터를 고정시킬 수 있는 샘플소스임.


<!DOCTYPE html> 

<html>

<head>

<meta charset="utf-8">

<title>이그셈플</title>

<style type="text/css">

html,body{height:100%}

body{margin:0}

#body{min-height:100%}

#content{padding-bottom:1.9em}

#foot{margin-top:-1.9em;height:1.9em}

#body{background:#eee}

#content{background:#ddd;width:60%;margin:0 auto} 

#foot{background:#ccc}

</style>

<body>


<div id="body">

   <div id="content">

    BODY

    </div>

</div>

<div id="foot">

FOOTER

</div>


</body>

</html>

'html5' 카테고리의 다른 글

html5 skeleton  (0) 2015.07.10
기본 템플릿  (0) 2014.05.12

<!DOCTYPE html>

<html>

<head>

    <title>New HTML5 page</title>

</head>


<body>

<!-- Add your content here-->

</body>

</html>


출처 : http://html5tutorial.net/examples/basic-template.html


'html5' 카테고리의 다른 글

html5 skeleton  (0) 2015.07.10
푸터 고정 템플릿  (0) 2014.05.20

+ Recent posts