-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheducacion.html
More file actions
87 lines (85 loc) · 2.54 KB
/
educacion.html
File metadata and controls
87 lines (85 loc) · 2.54 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
<DOCTYPE! HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Arturo Quintos">
<meta name="viewport" content="width-device-width,user-scalable=no">
<meta name="description" content="Hoja de vida de Arturo Quintos">
<title>Hoja de vida</title>
</head>
<body>
<header>
<img src="imagenes\LogoAQ.svg" width="10%">
<h1>Hoja de vida</h1>
<h2>Arturo Quintos</h2>
<h2>Información Personal</h2>
<ul>
<li><strong>Nombre:</strong> Arturo</li>
<li><strong>Apellido:</strong> Quintos</li>
<li><strong>Edad:</strong> 31</li>
</ul>
</header>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="educacion.html">Educación</a></li>
<li><a href="experiencia.html">Experiencia</a></li>
</ul>
</nav>
<section>
<article>
<h2>Educación</h2>
<table border="1" cellspacing="0" cellpadding="10">
<thead>
<tr>
<th>Año</th>
<th>Institución</th>
<th>Lugar</th>
<th>¿Culminó?</th>
</tr>
</thead>
<tbody>
<tr>
<td>2009</td>
<td>Tec de Monterrey</td>
<td>Morelia</td>
<td>Sí</td>
</tr>
<tr>
<td>2016</td>
<td>Tec de Monterrey, Coursera</td>
<td>Virtual</td>
<td>Sí</td>
</tr>
</tbody>
</table>
</article>
<article>
<form>
<h3>Agregar Estudios</h3>
<label for="anio">Año: </label>
<select name="anio">
<option value="2017" selected>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>
</select><br>
<label for="institucion">Institución: </label><input type="text" name="institucion" placeholder="Escribe aqui la escuela" required><br>
<label for="lugar">Lugar: </label><textarea name="lugar"></textarea><br>
<label for="culmino">Culminó: </label><input type="radio" name="culmino">Sí <input type="radio" name="culmino">No<br>
<input type="submit" value="Enviar">
</form>
</article>
</section>
<footer>
<p>©Derechos Reservados</p>
<ul>
<li><strong>Email: </strong><a href="mailto:aquintos86@gmail.com">aquintos86@gmail.com</a></li>
<li><strong>Telefono: </strong>123-123-543</li>
<li><strong>Direccion: </strong>Calle falsa 123, Alguna Ciudad, De algun Estado, En algun Pais</li>
</ul>
</footer>
</body>
</html>