-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 1.4 KB
/
index.html
File metadata and controls
53 lines (51 loc) · 1.4 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
<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>
<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>Información Personal</h2>
<img src="imagenes\YoMero.jpg">
<br>
</article>
<article>
<h2>Información de perfil</h2>
<ul>
<li><strong>Perfil: </strong> Profesionista</li>
<li><strong>Idiomas: </strong> Español, Inglés</li>
</ul>
</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>