-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (98 loc) · 4.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta property="og:title" content="Dean Logan's Portfolio" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="icon" href="img/laptop-code-solid.svg">
</head>
<body class="main-content">
<div class="container home active" id="home">
<div class="home-content">
<div class="left-home">
<div class="h-shape"></div>
<div class="image slideshow">
<img class="mySlides" src="img/pic1.jpg" alt="picture of me">
<img class="mySlides" src="img/pic2.jpg" alt="picture of me">
<img class="mySlides" src="img/pic3.jpg" alt="picture of me">
<img class="mySlides" src="img/pic4.jpg" alt="picture of me">
<img class="mySlides" src="img/pic5.jpg" alt="picture of me">
</div>
</div>
<div class="right-home">
<!--The ? indicate the start and end of the secondryy colour transformation within the typing effect-->
<h1 class="name"><span class="typewriter">Hi, I'm ?Dean Logan.? A Software Eng @ BT Group.</span><span class="cursor" id="cursorId">_</span></h1>
<p>
I'm a backend Java API developer for <span class="colour">EE</span>, and I have a 1st class honours degree in Software Engineering (BEng) from Queen's University Belfast.
Please navigate through this website to learn more about me and my experiences or download my CV below!
</p>
<div class="btn-con">
<a href="filesForDownload/CV-Dean-Logan.pdf" class="main-btn" download="">
<span class="btn-text">Download CV</span>
<span class="btn-icon"><i class="fas fa-download"></i></span>
</a>
</div>
<div class="contact-icons">
<div class="contact-icon">
<a href="https://www.linkedin.com/in/dean-john-logan" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/DeanLogan" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.credly.com/users/dean-logan" class="icon" target="_blank">
<p class="credly">C</p>
</a>
</div>
</div>
</div>
</div>
</div>
<!--Buttons for navigation-->
<div class="controls">
<div class="control home-btn active-btn">
<i class="fas fa-home"></i>
</div>
<div class="control about-btn">
<i class="fas fa-user"></i>
</div>
<div class="control education-btn">
<i class="fa-solid fa-graduation-cap"></i>
</div>
<div class="control experiences-btn">
<i class="fas fa-briefcase"></i>
</div>
<div class="control portfolio-btn">
<i class="fa-solid fa-folder-open"></i>
</div>
</div>
<div class="controls-hover">
<div class="hover-effect home-btn-div active-btn">
<p>Home</p>
</div>
<div class="hover-effect about-btn-div">
<p>About</p>
</div>
<div class="hover-effect education-btn-div">
<p>Education</p>
</div>
<div class="hover-effect experiences-btn-div">
<p>Job History</p>
</div>
<div class="hover-effect portfolio-btn-div">
<p>Portfolio</p>
</div>
</div>
<div class="theme-btn">
<i class="fas fa-adjust"></i>
</div>
<script src="app.js"></script>
</body>
</html>