-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (129 loc) · 5.18 KB
/
index.html
File metadata and controls
152 lines (129 loc) · 5.18 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
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
151
152
<!DOCTYPE html>
<html lang="en">
<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="public/stylesheets/style.css" />
<title>Curriculum Vitae</title>
</head>
<body>
<header>
<h1>Curriculum Vitae</h1>
</header>
<!-- Nav: Inicio -->
<nav id="Navegacion">
<ul>
<li><a href="#secciondatos">Datos Personales</a></li>
<li><a href="#seccionredes">Redes Sociales</a></li>
<li><a href="#seccionhabilidades">Habilidades</a></li>
<li><a href="#secciongaleria">Galería</a></li>
<li><a href="#seccioncontactenos">Contáctenos</a></li>
</ul>
</nav>
<!-- Nav: Fin -->
<section id="secciondatos" class="seccion">
<h2>Datos personales</h2>
<span>Nombre:</span>
<span>Sofía Del Rocío</span><br>
<span>Apellidos:</span>
<span>España Ayala</span>
<p>¡Hola! Soy ________, con experiencia en desarrollo web en front end y
back end.<br> Participo en todas las etapas
del ciclo de desarrollo de proyectos web dinámicos.<br> Además, tengo
sólidos conocimientos en gestión de proyectos
y relaciones con los clientes.</p>
</section>
<section id="seccionredes" class="seccion">
<h2>Redes sociales</h2>
<span><a href="https://www.linkedin.com/">LinkedIn</a></span>
<span><a href="https://github.com/">Github</a></span>
</section>
<section id="seccionhabilidades" class="seccion">
<h2>Habilidades Profesionales</h2>
<ul>
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>ReactJS</li>
<li>Django</li>
<li>Express</li>
</ul>
<h2>Idiomas</h2>
<table>
<caption>Habilidad en idiomas</caption>
<tr>
<th></th>
<th>Básico</th>
<th>Intermedio</th>
<th>Avanzado</th>
<th>Nativo</th>
</tr>
<tr>
<th>Inglés</th>
<td></td>
<td></td>
<td>X</td>
<td></td>
</tr>
<tr>
<th>Español</th>
<td></td>
<td></td>
<td></td>
<td>X</td>
</tr>
</table>
<h2>Contenidos Transversales</h2>
<ol>
<li>Docker</li>
<li>AWS</li>
<li>CI/CD</li>
<li>Scrum</li>
</ol>
</section>
<aside id="secciongaleria" class="seccion">
<img src="public/images/reading.jpg" alt="Reading" width="50%">
<img src="https://cdn.pixabay.com/photo/2015/05/29/19/18/cafe-789635_960_720.jpg" alt="Foto de colaboración" width="50%">
</aside>
<section id="seccioncontactenos" class="seccion">
<h2>Contáctame</h2>
<h3 id="datos">Sus datos</h3>
<form>
<div><label for="nombre">Nombres:</label><input type="text" name="nombre"
id="nombre"></div>
<div><label for="nombre">Apellidos:</label><input type="text"
name="apellidos"
id="apellidos"></div>
<div><label for="edad">Seleccione su rango de edad</label></div>
<div><input type="radio" id="opcion1" name="edad" value="menor25"><label
for="opcion1"> menor a 25 años</label></div>
<div><input type="radio" id="opcion2" name="edad" value="entre26y20"><label
for="opcion2"> entre 26 y 30 años</label></div>
<div><input type="radio" id="opcion3" name="edad" value="mayor31"><label
for="opcion3"> mayor a 31 años</label></div>
<div><label for="tiposervicio">Seleccione el tipo de servicio a consultar</label></div>
<div><input type="checkbox" name="frontend" id="frontend"><label
for="frontend">Frontend Dev</label></div>
<div><input type="checkbox" name="backend" id="backend"><label for="backend">Backend
Dev</label></div>
<div><input type="checkbox" name="scrum" id="scrum"><label for="scrum">Desarrollo
de software</label></div>
<div><input type="checkbox" name="cicd" id="cicd"><label for="cicd">CI/CD</label></div>
<button type="submit">Enviar</button>
</form>
<h3 id="Ubicacion">Ubicación</h3>
<div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3987.0151653775133!2d-79.96675808605129!3d-2.1478801984343434!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x902d72f925e5bfdb%3A0x327cdb9f7f4ba3b2!2sEscuela%20Superior%20Polit%C3%A9cnica%20del%20Litoral%20(ESPOL)!5e0!3m2!1ses!2sec!4v1673708213055!5m2!1ses!2sec" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</section>
<footer>
<address>
<div>Email:<a href="mailto:CORREO">sespana@espol.edu.ec</a></div>
<div>Tel: <a href="tel:+TELEFONO">+593 991069070</a></div>
<div>DIRECCIÓN</div>
<div>CIUDAD</div>
<div>PAÍS</div>
</address>
</footer>
</body>
</html>