-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (67 loc) · 2.36 KB
/
index.html
File metadata and controls
75 lines (67 loc) · 2.36 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV - Juan C. Huillcas</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="cv-container">
<!-- Header -->
<header class="cv-header">
<h1 id="name"></h1>
<h2 id="title"></h2>
<div class="contact-info">
<span id="email" ></span>
<span class="separator">|</span>
<span id="phone"></span>
<span class="separator">|</span>
<span id="location"></span>
</div>
<div class="contact-info">
<span id="linkedin"></span>
<span class="separator">|</span>
<span id="github"></span>
</div>
</header>
<!-- Profesional Profile -->
<section class="cv-section">
<h3 class="section-title">Professional Profile</h3>
<p id="profile" class="text-justify"></p>
</section>
<!-- Experience -->
<section class="cv-section">
<h3 class="section-title">Experience</h3>
<div id="experience-container"></div>
</section>
<!-- Education -->
<section class="cv-section">
<h3 class="section-title">Education and Certifications</h3>
<div id="education-container"></div>
</section>
<!-- Skills -->
<section class="cv-section">
<h3 class="section-title">Technical Skills</h3>
<div id="skills-container"></div>
</section>
<!-- Featured Projects -->
<section class="cv-section">
<h3 class="section-title">Featured Projects</h3>
<div id="projects-container"></div>
</section>
<!-- Additional Certifications -->
<section class="cv-section">
<h3 class="section-title">Additional Certifications</h3>
<ul id="certifications-list" class="simple-list"></ul>
</section>
<!-- Languages -->
<section class="cv-section">
<h3 class="section-title">Languages</h3>
<div id="languages-container"></div>
</section>
</div>
<script src="config.js"></script>
<script src="script.js"></script>
</body>
</html>