-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (90 loc) · 5.39 KB
/
index.html
File metadata and controls
96 lines (90 loc) · 5.39 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-179066783-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-179066783-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<title>Joshua Nwankwo</title>
</head>
<div class="container" id="navibar">
<nav class="navbar navbar-expand-lg sticky-top rounded-pill justify-content-around nav-justified darkLight">
<span class="nav-item active">
<a class="nav-link navbar-brand" href="index.html">
<img class="animoji-avatar" src="images/animoji.png" alt="avatar">
</a>
</span>
<span class="nav-item active">
<a class="nav-link" href="aboutme.html">About Me</a>
</span>
<span class="nav-item active">
<a class="nav-link" href="education.html">Education</a>
</span>
<span class="nav-item active">
<a class="nav-link" href="workexperience.html">Work Experience</a>
</span>
</nav>
</div>
<body class="homepage" style="text-align: center;">
<p> Hi I'm Joshua Nwankwo. This is my personal website to serve as a better way of getting to know me. Feel free to explore and learn more about me</p>
<h1>Latest Adventures</h1>
<div id="carousel-adv" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img style="width: 70vw;" src="images/carousel-images/20191109_125105_HDR - Copy.jpg" alt="pic of josh and friends in downtown">
</div>
<div class="carousel-item">
<img style="width: 70vw;" src="images/carousel-images/IMG_0388.jpg" alt="pic of josh and friends">
</div>
<div class="carousel-item">
<img style="width: 70vw;" src="images/carousel-images/IMG_0798.jpg" alt="pic of josh and friends">
</div>
<div class="carousel-item">
<img style="width: 70vw;" src="images/carousel-images/IMG_1828.jpg" alt="pic of josh and friends">
</div>
<div class="carousel-item">
<img style="width: 70vw;" src="images/carousel-images/IMG_1981.jpg" alt="pic of josh and friends">
</div>
<div class="carousel-item">
<img style="width: 70vw;" src="images/carousel-images/IMG_2944.jpg" alt="pic of josh and friends">
</div>
<div class="carousel-item">
<img style="width: 70vw;" src="images/carousel-images/IMG_8535 - Copy.JPG" alt="pic of josh and friends">
</div>
</div>
<a class="carousel-control-prev" href="#carousel-adv" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-adv" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
<footer class="footer mt-auto py-3">
<div class="container">
<div class="text-muted">Contact me through one of the following:</div>
<a href="https://www.instagram.com/joshonaut14/" target="_blank">
<img class = "social-media-icon" src="social-media-icons/instagram.png" alt="instagram icon">
</a>
<a href="https://www.linkedin.com/in/zulu-nwankwo/" target="_blank">
<img class = "social-media-icon" src="social-media-icons/linkedin.png" alt="linkedin icon">
</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe57rDENK1yjWq_3UTnaCW6yZZcmcw-Th_O3rZTqF6BghPwAA/viewform?usp=sf_link" target="_blank">
<img id="noborderrad" class = "social-media-icon" src="social-media-icons/email.png" alt="email icon">
</a>
</div>
<div style="font-size: x-small; margin-top: 10px;">Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
</footer>
</html>