-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (150 loc) · 3.75 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang = "es">
<head>
<meta charset = "utf-8" />
<title>Pagina 2014 en 2023</title>
<meta name = "description" content = " " />
<link rel = "stylesheet" href = "css/normalice.css" />
<link rel = "stylesheet" href = "css/estilos.css" />
</head>
<body>
<header>
<figure id = "logo">
<img src = "imagenes/logo.png" />
</figure>
<h1>
Pulse 2014_ Comunidad de las personas
atractivas y sexys
</h1>
<figure id = "avatar">
<img src = "imagenes/avatar.jpg" />
</figure>
</header>
<nav>
<ul>
<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>
<li id = "publicar_nav">
<a href = "#">Publicar</a>
</li>
</ul>
</nav>
<section id = "contenido">
<article class = "item">
<figure class = "imagen_item">
<img src = "imagenes/imagen.jpg" />
</figure>
<h2 class = "titulo_item">
<a href = "#">
Titulo del articulo 1
</a>
</h2>
<div class = "autor_item">
por <a href = "#">Joana Muñoz</a>
</div>
<div class = "datos_item">
<a href = "#" class = "tag_item">pony</a>
<span class = "fecha_item">
hace <strong>5</strong> min
</span>
</div>
<div class = "votacion">
<a href = "#" class = "up">U</a>
720
<a href = "#" class = "down">D</a>
<a href = "#" class = "comentarios_item">3</a>
<a href = "#" class = "guardar_item">X</a>
</div>
</article>
<article class = "item">
<figure class = "imagen_item">
<img src = "imagenes/imagen.jpg" />
</figure>
<h2 class = "titulo_item">
<a href = "#">
Titulo del articulo 2
</a>
</h2>
<div class = "autor_item">
por <a href = "#">Joana Muñoz</a>
</div>
<div class = "datos_item">
<a href = "#" class = "tag_item">pony</a>
<span class = "fecha_item">
hace <strong>5</strong> min
</span>
</div>
<div class = "votacion">
<a href = "#" class = "up">U</a>
720
<a href = "#" class = "down">D</a>
<a href = "#" class = "comentarios_item">3</a>
<a href = "#" class = "guardar_item">X</a>
</div>
</article>
<article class = "item">
<figure class = "imagen_item">
<img src = "imagenes/imagen.jpg" />
</figure>
<h2 class = "titulo_item">
<a href = "#">
Titulo del articulo 3
</a>
</h2>
<div class = "autor_item">
por <a href = "#">Joana Muñoz</a>
</div>
<div class = "datos_item">
<a href = "#" class = "tag_item">pony</a>
<span class = "fecha_item">
hace <strong>5</strong> min
</span>
</div>
<div class = "votacion">
<a href = "#" class = "up">U</a>
720
<a href = "#" class = "down">D</a>
<a href = "#" class = "comentarios_item">3</a>
<a href = "#" class = "guardar_item">X</a>
</div>
</article>
<article class = "item">
<figure class = "imagen_item">
<img src = "imagenes/imagen.jpg" />
</figure>
<h2 class = "titulo_item">
<a href = "#">
Titulo del articulo 4
</a>
</h2>
<div class = "autor_item">
por <a href = "#">Joana Muñoz</a>
</div>
<div class = "datos_item">
<a href = "#" class = "tag_item">pony</a>
<span class = "fecha_item">
hace <strong>5</strong> min
</span>
</div>
<div class = "votacion">
<a href = "#" class = "up">U</a>
720
<a href = "#" class = "down">D</a>
<a href = "#" class = "comentarios_item">3</a>
<a href = "#" class = "guardar_item">X</a>
</div>
</article>
</section>
<footer>
<p>
<strong>Power by Pony<strong>
</p>
<p>
Mejorandola 2023
</p>
</footer>
</body>
</html>