forked from freddier/Frontend2-America
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (88 loc) · 1.92 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Puls4: Comunidad para gente atractiva y millonaria</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/puls4.css" />
</head>
<body>
<header>
<div class="logo left">
<img src="imagenes/logo.png" alt="Puls4" />
</div>
<div class="titular">
<h1 class="titulo">
Puls4: Comunidad profesional de gente atractiva
</h1>
<div>
<a class="filtro" href="#">
Responsive Design
</a>
<a class="publicar" href="#">
Publicar
</a>
</div>
</div>
<div class="usuario">
<figure class="avatar">
<img src="imagenes/avatar.jpg" alt="freddier" />
</figure>
<a class="flechita" href="#">
X
</a>
</div>
</header>
<nav>
<ul class="menu">
<li><a href="#">Python</a></li>
<li><a href="#">HTML5</a></li>
<li><a href="#">Javascript</a></li>
<li><a href="#">Django</a></li>
<li><a href="#">CSS3</a></li>
</ul>
</nav>
<section class="posts">
<article class="post">
<div class="descripcion">
<figure class="imagen">
<img src="imagenes/foto.jpg" />
</figure>
<div class="detalles">
<h2 class="titulo">
Colores, gradientes y texto 3D con Sass y Compass
</h2>
<p class="autor">
por <a href="#">Diana Reyes</a>
</p>
<a class="tag" href="#">CSS3</a>
<p class="fecha">hace <strong>20</strong> min</p>
</div>
</div>
<div class="acciones">
<div class="votos">
<a class="up" href="#">U</a>
<span class="total">156</span>
<a class="down" href="#">D</a>
</div>
<div class="datos">
<a class="comentarios" href="#">
10
</a>
<a class="estrellita" href="#">
*
</a>
</div>
</div>
</article>
</section>
<footer>
<h3>
<strong>Powered by Platzi</strong>
<span class="mejor">
mejorando.la 2013
</span>
</h3>
</footer>
</body>
</html>