-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (57 loc) · 2.48 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
<!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">
<title>Stutern Portfolio</title>
<link rel="stylesheet" href="style.css">
<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+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/7c42211379.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<div class="nav banner">
<div class="navigation">
<div class="nav-logo">
<i class="fa-solid fa-code"></i></i> <a href="">Khairan Adediji</a>
</div>
<div class="nav-wrap">
<nav class="nav-items">
<a href="#" class="nav-link">About</a>
<a href="#" class="nav-link">Contact</a>
<div class="nav-block">
<a href="">View Work</a>
</div>
</nav>
</div>
</div>
</div>
<section id="intro">
<div class="img-div">
<img src="images/Khair.png" alt="Khairan">
</div>
<div class="bio-div">
<h1>Hi there!</h1>
<p>I started out with a fascination with websites and a desire to create unforgettable ones of my own. Learn more about my journey below.
</p>
</div>
</section>
<section id="career">
<div class="career-bio">
<h2>My Career So Far</h2>
<p>The Lockdown gave me the time to discover the world of software development. I loved the community and all it had to offer(Thanks, Bright Network!). Since then, I have had many stops and starts. Thankfully, I have found the structure and mentorship I need here at Stutern, learning Front End Development.</p>
</div>
<div class="skillset">
<div class="skill">HTML</div>
<div class="skill">CSS</div>
<div class="skill">CANVA</div>
<div class="skill">WIREFRAMING</div>
<div class="skill">BOOTSTRAP</div>
</div>
</section>
</main>
</body>
</html>