-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_7.html
71 lines (62 loc) · 1.06 KB
/
index_7.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Mi primera web app :D</title>
<link rel="stylesheet" href="estilos.css" />
</head>
<body>
<!-- comentario de lo que sea -->
<header>
<figure>
<img src="logo.png" />
</figure>
<h1>Título de la página</h1>
<figure>
<img src="avatar.jpg" />
<figcaption>
*
</figcaption>
</figure>
</header>
<nav>
<ul>
<li>*</li>
<li>Python</li>
<li>HTML5</li>
<li>Javascript</li>
<li>CSS3</li>
<li>Django</li>
<li>Publicar</li>
</ul>
</nav>
<section>
<article>
<figure>
<img src="imagen.jpg" />
</figure>
<h2>
<a href="#">Título del post</a>
</h2>
<p>
Por <a href="#">Freddy Vega</a>
</p>
<p>
<a href="#">categoria</a>
<span>Hace <strong>5</strong> min</span>
<a href="#">455</a>
<a href="#">*</a>
</p>
<p>
<a href="#">Up</a>
3141
<a href="#">Down</a>
</p>
</article>
</section>
<footer>
<p><strong>Powered by Platzi!</strong></p>
<p>Mejorando.la 2013 ®</p>
</footer>
</body>
</html>