lunes, 1 de febrero de 2016

Estructura básica


Estructura básica

<!DOCTYPE html>
<html>
<head>
<title>estructura básica</title>
<link rel="stylesheet" type="text/css" href="estilos.css">
<meta charset="utf-8">

</head>
<body>
<header>
CABECERA
</header>
<nav>
MENÚ
</nav>
<section id="contenedor">
<article id="caja">
</article>
<article id="caja">
</article>
</section>
</body>
<footer>
PIE DE PÁGINA
</footer>
</html>



Estilos
*
{
 margin: 0px;
 padding: 0px;
}

body 
{
background: silver;
margin: 10px;
}

header
{
background: gray;
color: white;
font-size: 120pt;
height: 150px;
margin: 0px 0px 5px 0px;
text-align: center;
width: 100%;



}

#caja
{
background: white;
width: 100%;
height: 250px;
margin-top:5px;
}



footer
{
background: white;
}


No hay comentarios:

Publicar un comentario