-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 2.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width;user-scalable=no">
<title>Curriculum Vitae</title>
</head>
<body>
<header>
<svg id="Logosvg" height="100" width=100 viewBox="0 0 100 100">
<g>
<circle cy="50" cx="50" r="50" stroke="none" fill="blue">
<circle cx="70" cy="50" r="10" stroke="black" fill="none" strokewidth="2px">
</g>
<path stroke="white" fill="none" strokewidth="2px" d="M 12 40 L 20 40 L 20 60 L 10 60"> </path>
<path stroke="white" fill="none" strokewidth="2px" d="M 22 60 L 32 40 L 42 60 L 37 50 L 26 50"> </path>
<path stroke="white" fill="none" strokewidth="2px" d="M 52 60 L 52 40 L 62 40 L 52 50 L 62 60" ></path>
<path stroke="white" fill="none" strokewidth="2px" d="M 48 40 L 48 60 " ></path>
<circle cx="70" cy="50" r="10" stroke="white" fill="none" strokewidth="2px">
</svg>
<h1>Curriculum vitae</h1>
<h2>Jairo Enrique Ladino Santamaria</h2>
<h3>Marzo 10 del 1994</h3>
<h3>Bogotá, Colombia</h3>
</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>
<hr>
<article >
<h2>Información Personal</h2>
<img src="img/3X4.jpg" alt="Foto Jairo" title="Foto para Curriculum" width="100px">
<p>Soy una persona Pro Activa preparado para asumir retos y desafios, trabaje en empresas
Financieras, Empresas productora de Cueros, Me desempeñe como Jefe de Atencion Al Cliente y Asistente de
Jefe de Planta. Soy Una persona Honesta y Responsable. En mis trabajos anteriores he logrado obtener
liderazgo y asumir grandes responsabilidades.</p>
<p>Idioma:</p>
<ul>
<li>Alemán: B2</li>
<li>Español: Nativo</li>
<li>Ingles: B2</li>
<li>Italiano: Principiante</li>
</ul>
</article>
<footer>
<strong>© Todos Los derechos reservados</strong>
<ul>
<li><strong>Correo:</strong> [email protected]</li>
<li><strong>Telefono:</strong> (57) 3045880392</li>
<li><strong>Dirección:</strong> Carrera 12D # 11-52</li>
</ul>
</footer>
</body>
</html>