-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
59 lines (59 loc) · 3.31 KB
/
aboutme.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
<!Doctype html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,200;1,300;1,400&display=swap" rel="stylesheet">
<link href="css/normalise.css" type="text/css" rel="stylesheet">
<link href="css/style.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css" />
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"/>
<script defer src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
<script defer type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script>
<script defer src="https://unpkg.com/swiper/swiper-bundle.js"></script>
<script defer src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script defer src="https://unpkg.com/swup@latest/dist/swup.min.js"></script>
<script defer src="src/scripts.js"></script>
</head>
<body>
<header>
<nav class="container">
<div class="empty"></div>
<div class="link">
<a href="/index.html" class="navlink">
<img class="uiButton" src="images-logo/building.png" alt="home"><span>Home</span></a>
<a href="/aboutme.html" class="navlink">
<img class="uiButton" src="images-logo/man.png" alt="about me"><span>About me</span></a>
<a href="portfolio.html" class="navlink">
<img class="uiButton" src="images-logo/browsers.png" alt="portfolio"><span>Portfolio</span></a>
<a href="Alexander_Ferreira_CV.pdf" download="Alexander_Ferreira_CV.pdf" class="navlink">
<img class="uiButton" src="images-logo/downloading.png" alt="download cv"><span>Download CV</span></a>
</div>
</nav>
</header>
<main class="index-main aboutme transition-fade" id="swup">
<div class="avatar">
<img src="images-logo/AvatarCroped.png">
</div>
<div class="box-content-aboutme">
<h1>A little bit about me</h1>
<p>After 15 years working as a Technical Manager, Sound Engineer and Lighting Designer for the event industry, I’ve decided to change my life following the disaster the epidemic had on my livelihood. It has always been a dream of mine to become a Software engineer, but I was unable to do so when I was younger.
In June 2020 I started by undertaking some University courses on Coursera and EdX before moving onto Codecademy.
These courses reinforced my love for coding, so I decided to make it real by joining i0 Academy in Bath.</p>
<p>I’m a very curious person, I love watching content about technology documentaries or reading about it. I closely follow some YouTube channels about different kinds of science subjects (Two Minutes papers, SmarterEveryDay, Mark Rober,
Veritasium and many more).
To stay in shape, I love a bit of climbing or trekking.
I’m also quite a big fan of D&D and RPG games and I enjoy nerding around and experimenting with my 3D printer.</p>
</div>
</main>
<footer>
<div>
<p>© 2021 - Alexander Ferreria -</p>
</div>
</footer>
</body>
</html>