-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (126 loc) · 4.08 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link rel="icon" href="resume-fav.ico" type="image/x-icon" />
<script src="skills.js"></script>
</head>
<body>
<!-- group of introductory or navigational aids -->
<header>
<h1>Àngel Andreu</h1>
<span>Software Engineer</span>
<a href="/" title="My resume">
<img src="profile.jpeg" alt="Profile picture" />
</a>
</header>
<main>
<div id="left-wrapper">
<article>
<h2>Experience</h2>
<section>
<dl>
<dt>Pactera Holdings</dt>
<dd><span>Software Engineer for HP Inc</span></dd>
<dd>2015 - 2019 (Sant Cugat del Vallès)</dd>
<dd>
Test & Tooling development for GSB Manufacturing Operations,
supporting GMO team in Singapore
</dd>
<dt>Capgemini</dt>
<dd><span>Software Engineer for HP Inc</span></dd>
<dd>2012 - 2015 (Sant Cugat del Vallès)</dd>
<dd>
Software and test development required in the manufacturing
processes of Large Format Printers
</dd>
<dt>Fundació Catalana de l'Esplai</dt>
<dd>
<span>Camp Leader</span>
</dd>
<dd>2010 - 2011 (El Prat de Llobregat)</dd>
<dd>
Planning outdoor activities for school groups <br />
based on teamwork dynamics
</dd>
</dl>
</section>
</article>
<article>
<h2>Contact</h2>
<table>
<tr>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td><i aria-hidden="true" class="fa fa-envelope"></i></td>
</tr>
<tr>
<td>
08301 Mataró, Barcelona
</td>
<td><i aria-hidden="true" class="fa fa-home"></i></td>
</tr>
<tr>
<td>
<a href="https://linkedin.com/in/angelandreu" target="_blank"
>linkedin.com/in/angelandreu</a
>
</td>
<td><i aria-hidden="true" class="fa fa-linkedin"></i></td>
</tr>
<tr>
<td>
<a href="https://github.com/txelut" target="_blank"
>github.com/txelut</a
>
</td>
<td><i aria-hidden="true" class="fa fa-github"></i></td>
</tr>
</table>
</article>
</div>
<div id="right-wrapper">
<article>
<h2>Education</h2>
<section>
<dl>
<dt>Ful-Stack Web Technologies</dt>
<dd>
Postgraduate course at UPC School <br />
(currently enrolled)
</dd>
<dt>Master's in Computer Engineering</dt>
<dd>Universitat Oberta de Catalunya</dd>
<dt>BSc in Telecommunications Engineering</dt>
<dd>
Universiat Politècnica de Catalunya, specialized in sound and
image processing
</dd>
</dl>
</section>
</article>
<article>
<h2>Skills</h2>
<section id="skills">
<!-- section created dynamically in skills.js -->
</section>
</article>
</div>
</main>
<footer>
<p>
Resume HTML page developed within Full-Stack Web Technologies
postgraduate context. <br />
Design based on this
<a
href="https://salomonelli.github.io/best-resume-ever/#/resume/left-right"
target="_blank"
>Sara Steiert</a
>'s resume template. April 2020.
</p>
</footer>
</body>
</html>