-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 3.29 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
<!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 transition-fade" id="swup">
<div class="empty"></div>
<div class="box-content">
<h1>Hello, I'm Alex!</h1>
<p>I'm a developer based in Bristol.</p>
<p>In 2021 after 11 months of learning by myself how to code I decided to take the leap and
become a student at the iO Academy where I had the great opportunity to expand my knowledge as a software developer.
Where I learn the basics and principal of coding with <span>PHP / JS / HTML / CSS</span> and different FrameWork.</p>
<p>As part of the Curriculum I had the chance to become a Certified Scrum Master.</p>
<p>If you are an employer looking to hire, you can get in touch with me here:</p>
<div class="contact">
<a href="https://www.linkedin.com/in/alexferreiradesousa/"><img src="./images-logo/LI-In-Bug.png" alt="Linkedin logo" class="logo"></a>
<a href="https://github.com/SniffleSneeze?tab=repositories"><img src="./images-logo/GitHub-Mark-Light-120px-plus.png" alt="GitHub logo" class="logo"></a>
<a href="mailto:info.alexFerreira@gmail.com"><img src="./images-logo/email.png" alt="Email" class="logo"></a>
</div>
</div>
</main>
<footer>
<div>
<p>© 2021 - Alexander Ferreria -</p>
</div>
</footer>
</body>
</html>