Sesión 7 html y css
- HTML
<!DOCTYPE html>
<html lang="es-Es">
<head>
<meta charset="UTF-8">
<title>Práctica 7.Diseño web</title>
<link rel="stylesheet" href"practica8.css">
</head>
<body>
<header>
<h1>Diseño Web HTML 5</h1>
</header>
<article>
<h2>Contenido Web</h2>
<section>
<h3>Columna 1</h3>
<p>Loren ipsum dolor sit amet</p>
</section>
<section>
<h3>Columna 2</h3>
<p>Lorem ipsum dolor sit amet</p>
</section>
</article>
<footer>
<h3>Diseño realizado por Ainara :)</h3>
</footer>
</body>
</html>
- CSS
/*
Hoja de Estilo Práctica 8.css
*/
*{
box-sizing: border-box;
border-style:double;
margin: 0px;
}
h1,h2,h3{
text-align: :center;
}
header,footer{
background-color:aqua;
color:white;
padding:20px;
}
article{
background-color:red;
padding-left:20px;
padding-right:20px;
padding-bottom: 20px;
overflow:auto;
}
section{
background-color:antiquewhite;
padding: 20px;
float: left;
width: 50%;
height:300px;
border-style: solid;
overflow: auto;
}
footer{
clear:both;
}
Comentarios
Publicar un comentario