-
Notifications
You must be signed in to change notification settings - Fork 0
/
educacion.html
100 lines (100 loc) · 2.8 KB
/
educacion.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Hoja de Vida Robin</title>
</head>
<body>
<svg width="150px" height="106px" viewbox="0 0 150 106">
<image xlink:href="img/logo.svg" width="150px" height="106px">Logo Robin</image>
</svg>
<h1>HOJA DE VIDA ROBIN</h1>
<h2>Nombres y apellidos:</h2><h3>Robinson Lopera</h3>
<h2>Fecha y lugar de nacimiento:</h2><h3>Medellín, Julio de 1978</h3>
<a href="index.html">Inicio</a>
<a href="experiencia.html">Experiencia</a>
<h2>EDUCACIÓN</h2>
<table border="2">
<tr>
<td><b>Año</b></td>
<td><b>Institución</b></td>
<td><b>Lugar</b></td>
<td><b>Culminó?</b></td>
</tr>
<tr>
<td>2002</td>
<td>UCC</td>
<td>Medellín</td>
<td>Si</td>
</tr>
<tr>
<td>2009</td>
<td>EIA</td>
<td>Envigado</td>
<td>Si</td>
</tr>
<tr>
<td>2009</td>
<td>PMI</td>
<td>USA</td>
<td>Si</td>
</tr>
</table>
<br>
<h3>Agregar Estudios</h3>
<form class="" action="index.html" method="post">
<table border="0" title="Agregar Estudios" >
<tr>
<td>
<label for="year">Año</label>
</td>
<td>
<select class="" name="">
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
<option value="2015">2015</option>
<option value="2014">2014</option>
<option value="2013">2013</option>
<option value="2012">2012</option>
<option value="2011">2011</option>
<option value="2010">2010</option>
<option value="2009">2009</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="Institucion">Institución</label>
</td>
<td>
<input type="text" name="institucion" value="">
</td>
</tr>
<tr>
<td>
<label for="lugar">Lugar</label>
</td>
<td>
<textarea name="lugar" rows="2" cols="80"></textarea>
</td>
</tr>
<tr>
<td>
<label for="termino">Culminó?</label>
</td>
<td>
<input type="radio" name="culmino">Si
<input type="radio" name="culmino">No
</td>
</tr>
</table>
<input type="submit" name="enviar" >
</form>
</body>
<footer>
<br><br>
<a href="mailto:[email protected]">Contacto</a>
<a href="https://www.facebook.com/robinson.lopera"><img src="img/facebook.png" width="30px" height="30px" alt=""></a>
</footer>
</html>