-
Notifications
You must be signed in to change notification settings - Fork 4
/
dia1.html
38 lines (38 loc) · 1.03 KB
/
dia1.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dia 1 HTML5 / CSS3</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/dia1.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- Cabecera del Site -->
<header>
<h1>Mi sitio en HTML5</h1>
</header>
<!-- Cabecera de una Sección -->
<section>
<header>
<h1>Mi primera Seccion en HTML5</h1>
</header>
<article>
<header>
<h1> Titulo del Articulo </h1>
</header>
<p> Lorem ipsum dolor sit amet... </p>
<p> Lorem ipsum dolor sit amet ... </p>
<footer>
<span>Autor: Sergio Marin</span>
<span>Licencia MIT</span>
</footer>
</article>
</section>
<footer>
<p>Todos los derechos reservados Escuela de Diseno Web</p>
</footer>
</body>
</html>