-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 1.63 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 1.63 KB
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<div class="logo">
<img src="imagenes/logo.png" alt="Logo!" />
</div>
<div class="titular">
<h1>Hace tu post!</h1>
<a class="filtro" href="#">
Programing
</a>
<a class="publicar" href="#">
Publicar
</a>
</div>
<div class="usuario">
<figure class="avatar">
<img src="imagenes/avatar.jpg" alt="hernan s" />
</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="#">CSS3</a></li>
<li><a href="#">Django</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">
Html5 es una masa y lo aprendes muy rapido =)
</h2>
<p class="autor">
por <a href="#">Hernan Seghetti</a>
</p>
<a class="tag" href="#">HTML5</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="#">90</a>
<a class="estrellita" href="#">*</a>
</div>
</div>
</article>
</section>
<footer>
<h3>
<strong>Powered by Has</strong>
<span class="mejor">
Mejorando los skills
</span>
</h3>
</footer>
</body>
</html>