HTML 5
HTML 5
com
/2013/05/curso-html5-post-6-la-
etiqueta-address.html
<style type="text/css" >
body {
width: 940px;
font: 12px Helvetica, Arial, sans-
serif;
background: #f5f5f1;
margin: auto;
}
header, section, footer, aside, nav,
article {
display: block;
position: relative;
float:left;
height: 40px;
}
header {
width: 100%;
background: #ddd;
}
nav {
width: 240px;
background: #fff;
background: #999;
}
section {
background: #777;
width: 700px;
height: 100%;
}
article {
width: 650px;
margin: 10px;
background: #aaa;
}
aside {
width: 240px;
}
footer {
width: 100%;
background: #666;
}
</style>
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<title>Mi primera pagina
web</title>
</head>
<body>
<header> Cabecera
</header>
<aside>
<nav>
Navegador
</nav>
</aside>
<section> Seccion
<article>
Articulo 1
</article>
<article>
Articulo 2
</article>
</section>
<footer>
Pie de pagina
</footer>
</body>
</html>