-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (68 loc) · 1.34 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta description="Proyecto web online">
<title>TERA ink</title>
</head>
<body>
<header>
<figure id="logo">
<img src="logo.png" alt="">
</figure>
<h1>
Curso de Programación
</h1>
<figure>
<img src="avatar.jpg" alt="">
</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="pony.jpg" alt="">
</figure>
<h2>
<a href="#">
Titulo del articulo
</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>
<a href="#" class="comentarios_item">69</a>
<a href="#" class="guardar_item">pony</a>
</div>
<div class="votacion">
<a href="#" class="up"></a>
720
<a href="#" class="down"></a>
</div>
</article>
</section>
<footer>
<p>
<strong>Powered by TERA ink</strong>
</p>
<p>
Yohan 2015
</p>
</footer>
</body>
</html>