-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (101 loc) · 2.88 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>Clase 07</title>
</head>
<body>
<header>
<img src="./img/logo-batman.png" alt="batman" />
<h1 class="principal-title title">Curriculum vitae de Bruce Wayne</h1>
</header>
<main>
<section class="personal-section">
<h2 class="subtitle title">Datos personales</h2>
<ul class="section-content">
<li>
<p>
<span class="text-bold text-italic">Nombre completo:</span>
Bruce Wayne
</p>
</li>
<li>
<p>
<span class="text-bold text-italic">Fecha de nacimiento:</span>
01/05/1939
</p>
</li>
<li>
<p>
<span class="text-bold text-italic">Lugar de nacimiento:</span>
Gotham city
</p>
</li>
</ul>
</section>
<section class="academic-section">
<h2 class="subtitle title">Formación académica</h2>
<ul class="section-content">
<li>
<p class="text-bold">1956-1961:</p>
<div>
<p> Universidad del espantapájaros</p>
<p> Licenciatura en aeronaútica</p>
</div>
</li>
<li>
<p class="text-bold">1952-1956:</p>
<div>
<p> Secundario Gotham</p>
<p> Bachiller con especialización en trucos</p>
</div>
</li>
</ul>
</section>
<section class="work-section">
<h2 class="subtitle title">Experiencia laboral</h2>
<ul class="section-content">
<li>
<p class="text-bold">1975-1985:</p>
<div>
<p>Desocupado</p>
<p>Sin trabajo porquer se me rompió el batimovil</p>
</div>
</li>
<li>
<p class="text-bold">1965-1975:</p>
<div>
<p>Cazavillanos y demás chusma</p>
<p>Atrapé a Gatubela a joker a Victor Fries lo dejé porque se me congeló la capa</p>
</div>
</li>
<li>
<p class="text-bold">1962-1965:</p>
<div>
<p>Aprendiz de superhéroes</p>
<p>Hice pasantía con Superman. Opté por usar mascara porque no pude aprender a peinarme el rulo</p>
</div>
</li>
</ul>
</section>
</main>
<footer>
<p>0810 - Batman</p>
<ul class="rrss">
<li>
<a href="http://" target="_blank" rel="noopener noreferrer">
<img src="./img/instagram.svg" alt="Instagram">
</a>
</li>
<li>
<a href="http://" target="_blank" rel="noopener noreferrer">
<img src="./img/linkedin.svg" alt="Linkedin">
</a>
</li>
</ul>
</footer>
</body>
</html>