-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
74 lines (67 loc) · 2.25 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hoja de Vida</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
background: white;
padding: 20px;
margin: auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
.section {
margin-bottom: 20px;
}
.contacto, .experiencia, .educacion, .habilidades {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Nombre Completo</h1>
<p><strong>Profesión:</strong> Tu profesión</p>
<div class="section contacto">
<h2>Contacto</h2>
<p><strong>Teléfono:</strong> +57 123 456 7890</p>
<p><strong>Email:</strong> correo@ejemplo.com</p>
<p><strong>LinkedIn:</strong> linkedin.com/in/tuusuario</p>
</div>
<div class="section experiencia">
<h2>Experiencia Laboral</h2>
<p><strong>Empresa XYZ</strong> (2020 - Actualidad)</p>
<p>Puesto ocupado y descripción breve.</p>
<p><strong>Empresa ABC</strong> (2018 - 2020)</p>
<p>Puesto ocupado y descripción breve.</p>
</div>
<div class="section educacion">
<h2>Educación</h2>
<p><strong>Universidad Ejemplo</strong> (2014 - 2018)</p>
<p>Título obtenido.</p>
</div>
<div class="section habilidades">
<h2>Habilidades</h2>
<ul>
<li>Habilidad 1</li>
<li>Habilidad 2</li>
<li>Habilidad 3</li>
</ul>
</div>
</div>
</body>
<script src="https://cdn.botpress.cloud/webchat/v2.2/inject.js"></script>
<script src="https://files.bpcontent.cloud/2025/04/05/02/20250405021404-CM8Q1FN6.js"></script>
</html>