-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
527 lines (519 loc) · 18 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<script
src="https://kit.fontawesome.com/fc84a9ee80.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="src/styles/style.css" />
<title>My Portfolio</title>
<link
rel="icon"
href="src/assets/img/favicon-32x32.ico"
type="image/x-icon"
/>
</head>
<body>
<header>
<nav>
<ul class="main-menu">
<li>
<ul class="logo-toggle">
<li class="logo"><a href="#about-me">My Portfolio</a></li>
<li class="btn-toggle">
<button
type="button"
aria-controls="menu"
aria-expanded="false"
aria-label="menu toggle button"
>
<i class="fa-solid fa-bars"></i>
</button>
</li>
</ul>
</li>
<li>
<ul id="menu" class="page-links">
<li><a class="show-hide" href="#about-me">About</a></li>
<li><a class="show-hide" href="#work">Work</a></li>
<li><a class="show-hide" href="#education">Education</a></li>
<li><a class="show-hide" href="#projects">Projects</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<article>
<section id="about-me">
<h2 class="section-heading">Who I Am</h2>
<div class="flex-about-me">
<img
src="src/assets/img/profile-pic-small.jpg"
srcset="
src/assets/img/profile-pic-big.jpg 1000w,
src/assets/img/profile-pic-small.jpg 400w
"
sizes="(min-width: 700px) 1000px"
alt="Personal Picture"
/>
<div class="inner-about-me">
<h3 class="subheading">Richard Lucas</h3>
<p>
Curiosity has led me to discover the fascinating world of web
development, and I have been studying it since then. I see web
technologies as a means to reshape the way we interact with the
world around us. They lead to continuous progress, making life
better and easier by helping companies, jobs, and society be more
efficient. I am very positive about this change, and I am
committed to actively contributing to this transformation.
</p>
</div>
</div>
</section>
<section id="work">
<h2 class="section-heading">What I've done</h2>
<div
id="carouselExampleControls"
class="carousel slide"
data-bs-interval="false"
>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="src/assets/img/work-3500w.jpg"
srcset="
src/assets/img/work-3500w.jpg 3500w,
src/assets/img/work-875w.jpg 875w
"
sizes="(min-width: 875px) 3500px"
class="d-block w-100"
alt="Office Buildings"
/>
<div class="carousel-caption alignment">
<h5>My journey so far...</h5>
<p>
I've always worked in tourism, and though very different from
the IT sector, I have acquired crucial transferable skills for
web development. My life experience living abroad has made me
more flexible, adaptable, and empathic with people and
environments. And my jobs have taught me to work in teams,
methodically solve problems as they arise, and use critical
thinking to analyze complex data, like market demand.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="src/assets/img/hotels-3500w.jpg"
srcset="
src/assets/img/hotels-875w.jpg 875w,
src/assets/img/hotels-3500w.jpg 3500w
"
sizes="(min-width: 875px) 3500px"
class="d-block w-100"
alt="A Hotel Corridor"
/>
<div class="carousel-caption alignment">
<h5>Hotels - Front Desk Agent</h5>
<ul>
<li>
<h6>Hotel Number One</h6>
<p>
<time datetime="2021-10">Oct 2021</time> -
<time datetime="2022-04">Apr 2022</time>. Milan, Italy
</p>
</li>
<li>
<h6>Hotel Number Two</h6>
<p>
<time datetime="2012-11">Nov 2012</time> -
<time datetime="2021-10">Oct 2021</time>. Milan, Italy
</p>
</li>
<li>
<h6>Hotel Number Three</h6>
<p>
<time datetime="2007-10">Oct 2007</time> -
<time datetime="2008-11">Nov 2008</time>. Montevideo,
Uruguay
</p>
</li>
</ul>
<p class="job-description">
Customer service, billing, booking, customers’ accounts
auditing, revenue management.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="src/assets/img/aviation-3500w.jpg"
srcset="
src/assets/img/aviation-875w.jpg 875w,
src/assets/img/aviation-3500w.jpg 3500w
"
sizes="(min-width: 875px) 3500px"
class="d-block w-100"
alt="A Plane"
/>
<div class="carousel-caption alignment">
<h5>Civil Aviation - Cabin Crew</h5>
<h6>An Airline Company</h6>
<p>
<time datetime="2008-11">Nov 2008</time> -
<time datetime="2012-06">Jun 2012</time>. Dubai, United Arab
Emirates
</p>
<p>
Onboard services, promotion of company's services and
products, safety and security of aircrafts and passengers.
</p>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="prev"
>
<span aria-hidden="true"
><i class="fa-solid fa-chevron-left"></i
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="next"
>
<span aria-hidden="true"
><i class="fa-solid fa-chevron-right"></i
></span>
<span class="visually-hidden">Next</span>
</button>
<div class="turn-device-msg">
<i class="fa-solid fa-arrows-rotate"></i>
<p>Turn device to see content</p>
</div>
</div>
</section>
<section id="education">
<h2 class="section-heading">What I Know</h2>
<div class="flex-education">
<div class="flex-education-digital">
<h4 class="subheading">Digital skills</h4>
<ul class="digital-skills">
<li>
HTML
<div class="progress">
<div
class="progress-bar"
role="progressbar"
title="Html"
style="width: 60%"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</li>
<li>
CSS
<div class="progress">
<div
class="progress-bar"
role="progressbar"
title="Css"
style="width: 50%"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</li>
<li>
JAVASCRIPT
<div class="progress">
<div
class="progress-bar"
role="progressbar"
title="Javascript"
style="width: 40%"
aria-valuenow="40"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</li>
<li>
REACT
<div class="progress">
<div
class="progress-bar"
role="progressbar"
title="React"
style="width: 30%"
aria-valuenow="30"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</li>
</ul>
</div>
<div class="flex-education-languages">
<h4 class="subheading">Languages</h4>
<table>
<tr>
<th>
<div class="flag-img">
<img
src="src/assets/img/flag_usa.png"
alt="American flag"
/>
</div>
English
</th>
<th>
<div class="flag-img">
<img
src="src/assets/img/flag_spain.png"
alt="Spanish flag"
/>
</div>
Spanish
</th>
<th>
<div class="flag-img">
<img
src="src/assets/img/flag_italy.png"
alt="Italian flag"
/>
</div>
Italian
</th>
</tr>
<tr>
<td>Fluent</td>
<td>Mother Tongue</td>
<td>Fluent</td>
</tr>
</table>
</div>
</div>
<div class="flex-education-formal">
<h4 class="subheading">Education</h4>
<ul>
<li>
<h3>Front End Development</h3>
<p>
<time datetime="2022-04">Apr 2022</time> -
<time datetime="2023-05">May 2023</time>, Online course
</p>
<p>
Web development, front-end technologies such as HTML, CSS,
JavasScript and ReactJs.
</p>
</li>
<li>
<h3>Hotel Management Diploma</h3>
<p>
<time datetime="2005-03">Mar 2005</time> -
<time datetime="2006-12">Dec 2006</time>, Uruguay
</p>
<p>
Hotel Management and Tourism, hotels’ structure and operations,
customer service, event planning, sales and administration
related to hotels.
</p>
</li>
<li>
<h3>High School Diploma</h3>
<p>
<time datetime="1997-03">Mar 1997</time> -
<time datetime="2004-12">Dec 2004</time>, Uruguay
</p>
<p>
Social, natural and exact sciences. Economics graduate
orientation.
</p>
</li>
</ul>
</div>
</section>
<section id="projects">
<h2 class="section-heading">My projects</h2>
<ul class="group-btns" aria-label="Projects Accordion">
<li class="flex-center-col">
<button
id="project-1"
type="button"
aria-expanded="false"
aria-controls="project-1-content"
>
COUNTER
</button>
<div
id="project-1-content"
role="region"
aria-labelledby="project-1"
>
<h5>Project Description</h5>
<p>
A fully functional counter implemented with plain Javascript
</p>
<a href="https://rilmxp-counter.netlify.app/" target="_blank"
>View Project</a
>
</div>
</li>
<li class="flex-left-right-col">
<ul class="flex-left-col">
<li>
<button
id="project-2"
type="button"
aria-expanded="false"
aria-controls="project-2-content"
>
LIBRARY
</button>
<div
id="project-2-content"
role="region"
aria-labelledby="project-2"
>
<h5>Project Description</h5>
<p>
A book search website created entirely with JavaScript that
fetches books and their descriptions on demand. It promotes
book reading as per the UN's Quality Education goal.
</p>
<a href="https://rilmxp-library.netlify.app/" target="_blank"
>View Project</a
>
</div>
</li>
<li>
<button
id="project-3"
type="button"
aria-expanded="false"
aria-controls="project-3-content"
>
VEGGIE MENU
</button>
<div
id="project-3-content"
role="region"
aria-labelledby="project-3"
>
<h5>Project Description</h5>
<p>
A vegeterian recipe search website created with ReactJs
where users can register and login to save their favorite
recipes. It promotes a healthy and environmentally-friendly
diet in conformity with the UN's Climate Action and Life on
Land goals.
</p>
<a
href="https://rilmxp-veggie-menu.netlify.app/"
target="_blank"
>View Project</a
>
</div>
</li>
</ul>
<ul class="flex-right-col">
<li>
<button
id="project-4"
type="button"
aria-expanded="false"
aria-controls="project-4-content"
>
GLOBAL WARMING
</button>
<div
id="project-4-content"
role="region"
aria-labelledby="project-4"
>
<h5>Project Description</h5>
<p>
An environmental information website created with ReactJs
that creates charts about global warming's key factors by
fetching data from different APIs. It promotes awareness
about human impact on nature following the UN's Climate
Action goal.
</p>
<a
href="https://rilmxp-global-warming.netlify.app/"
target="_blank"
>View Project</a
>
</div>
</li>
<li>
<button
id="project-5"
type="button"
aria-expanded="false"
aria-controls="project-5-content"
>
PROJECT FIVE
</button>
<div
id="project-5-content"
role="region"
aria-labelledby="project-5"
>
<h5>Project Description</h5>
<p>PHP and SQL project coming soon...</p>
<a href="src/html/projects.html" target="_blank"
>View Project</a
>
</div>
</li>
</ul>
</li>
</ul>
</section>
<footer>
<h5>Contact Me</h5>
<address>
Email: <a href="mailto:richardluca@gmail.com">Richard Lucas</a> <br />
Address: Via Casamia 1234, Milan, Italy <br />
Cel: 1234 456 789
</address>
<div class="flex-footer-1">
<a
href="https://www.linkedin.com/in/richard-lucas-web-developer"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="https://github.com/Rilmxp/Portfolio" target="_blank"
><i class="fa-brands fa-github"></i
></a>
</div>
</footer>
</article>
<script src="src/js/main.js"></script>
</body>
</html>