-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 885 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Grid Layout</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header class="header">
<h2>Cabecera</h2>
</header>
<div class="main">
<h2>Main</h2>
<p>Este es el contenido principal. Lorem ipsum</p>
</div>
<div class="complemento">
<h2>Complemento</h2>
<p>Este es el contenido Complemento. Lorem ipsum</p>
</div>
<aside class="sidebar">
<h2>Menu</h2>
<ul>
<li>Opcion 1</li>
<li>Opcion 2</li>
<li>Opcion 3</li>
<li>Opcion 4</li>
</ul>
</aside>
<div class="articulo">
<h2>articulo</h2>
</div>
<footer class="footer">
<h2>Footer</h2>
</footer>
</div>
</body>
</html>