-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (85 loc) · 2.92 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Aitor Fidalgo</title>
<link rel="stylesheet" href="./css/styles.min.css"/>
<link rel="stylesheet" href="./css/timeline.min.css"/>
<script src="./src/timeline.js" type="module"></script>
</head>
<body>
<header>
<div class="content-wrapper">
<img class="profile-img" src="./img/profile.jpeg"/>
<div class="title">
<h1>Aitor Fidalgo</h1>
<h2>Software Engineer</h2>
<div class="cv-download-buttons-wrapper">
<a class="download-button" href="./content/cv-english.pdf" download="CV - Aitor Fidalgo Sanchez (EN)">
<img src="./img/icons/download-black.svg" alt="Download icon"/>
Download CV (English)
</a>
<a class="download-button" href="./content/cv-spanish.pdf" download="CV - Aitor Fidalgo Sanchez (ES)">
<img src="./img/icons/download-black.svg" alt="Download icon"/>
Download CV (Spanish)
</a>
</div>
<div class="social-media-wrapper">
<a class="social-media-button" href="https://linkedin.com/in/aitorfidalgo">
<img src="./img/icons/linkedin-white.svg"/>
</a>
<a class="social-media-button" href="https://github.com/aitorfi">
<img src="./img/icons/github-white.svg"/>
</a>
</div>
</div>
</div>
</header>
<main>
<div class="content-wrapper">
<section class="timeline-section">
<div class="timeline-wrapper">
<h2>Career Timeline</h2>
<div class="timeline" id="career-timeline">
<div class="h-timeline"></div>
<div class="v-timeline"></div>
<div class="timeline-item-container"></div>
</div>
</div>
<div class="timeline-wrapper">
<h2>Studies Timeline</h2>
<div class="timeline" id="studies-timeline">
<div class="h-timeline"></div>
<div class="v-timeline"></div>
<div class="timeline-item-container"></div>
</div>
</div>
</section>
</div>
</main>
<footer>
<div class="content-wrapper">
<section>
<h2>Contact Information</h2>
<div class="contact-info-wrapper">
<img src="./img/icons/telephone-white.svg" alt="Telephone icon"/>
<a href="tel:+34633879330">+34 633 879 330</a>
</div>
<div class="contact-info-wrapper">
<img src="./img/icons/envelope-white.svg" alt="Email icon"/>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="contact-info-wrapper">
<img src="./img/icons/linkedin-white.svg" alt="LinkedIn icon"/>
<a href="https://linkedin.com/in/aitorfidalgo">linkedin.com/in/aitorfidalgo</a>
</div>
<div class="contact-info-wrapper">
<img src="./img/icons/github-white.svg" alt="GitHub icon"/>
<a href="https://github.com/aitorfi">github.com/aitorfi</a>
</div>
</section>
<img class="profile-img" src="./img/profile.jpeg"/>
</div>
</footer>
</body>
</html>