-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlayout-css.html
45 lines (43 loc) · 1 KB
/
layout-css.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>Layout básico</title>
<style>
*{
border:0;
margin:0;
}
aside{
width: 48%;
float: left;
margin: 0 auto;
}
section{
width: 48%;
float: right;
margin: 0 auto;
}
footer{
clear: both;
}
header,footer, section, aside, nav{
border:1px red solid;
}
</style>
</head>
<body>
<header>Cabecera</header>
<nav>Menú de Navegación</nav>
<aside>
<h2>Barra lateral</h2>
</aside>
<section>
<h2>Sección</h2>
<a href="index.html">Volver</a>
<article>Artículo 1</article>
<article>Artículo 2</article>
</section>
<footer>Pie de página</footer>
</body>
</html>