-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (113 loc) · 4.74 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="This is the homepage to the Portfolio of Irene Rukwaro - Front-end developer. It has the relevant details to her front-end development work.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<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=Lato&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="Styles/styling.css">
<script src="https://kit.fontawesome.com/7fa2c1659b.js" crossorigin="anonymous"></script>
<title>Irene Rukwaro's Portfolio</title>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="/">Irene Rukwaro</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
<div class="navbar-nav ">
<a class="nav-link active" aria-current="page" href="/">Home</a>
<a class="nav-link" href="./about.html">About</a>
<a class="nav-link" href="./work.html">Work</a>
<a class="nav-link" href="./contact.html">Contact</a>
</div>
</div>
</div>
</nav>
<header class="homepage-header">
<p>
🖐Hi, I am
</p>
<h1 class="homepage-h1">
Irene Nyawira Rukwaro
</h1>
<h2>
Front-end Developer from Kenya,
<small class="country">KE</small>
</h2>
<a href="./contact.html">
<button class="btn-primary ContactButton contact">
Contact Me
</button>
</a>
</header>
<div class="project_details">
Projects <i class="fa-solid fa-list-check"></i>:
</div>
<div class="container" id="projects">
<div class="row align fs-2">
<div class="col-sm-6">
<img src="Images/app.png" alt="weather project" class="img-fluid pop">
</div>
<div class="col-sm-6 side">
<span class="homepage-titles">
Weather App
</span>
<br />
This weather project shows the minimum and maximum temperatures, humidity and wind speed. It provides a 5-day forecast of the
desired location.
</div>
<div class="row align">
<div class="col-sm-6 side">
<span class="homepage-titles">
Yoga App
</span>
<br />
This is a yoga page. This is dedicated to yoga fans. It provides steps to a successful yoga
session. Also, it shows the health benefits of engaging in yoga workouts.</div>
<div class="col-sm-6">
<img src="Images/yoga.png" alt="Yoga Info" class="img-fluid pop">
</div>
</div>
<div class="row">
<div class="col-sm-6">
<img src="Images/yogurt.png" alt="Yogurt Info" class="img-fluid pop ms-2">
</div>
<div class="col-sm-6 side">
<span class="homepage-titles">
Yogurt App
</span>
<br />
The page is about my love for greek yogurt. Aside from Greek Yogurt, it talks about other good flavours for yogurt lovers.
</div>
</div>
</div>
<footer class="homepage-footer">
<span class="footer-homepage-contact">
Contact Me
</span>
<div class="homepage-social-links">
<a title="LinkedIn" class="homepage-social" href="https://ke.linkedin.com/in/irene-rukwaro-88a78628a" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a title="Gmail" class="homepage-social" href="mailto:[email protected]" target="_blank">
<i class="fa-solid fa-envelope"></i>
</a>
<a title="Github" class="homepage-social" href="https://github.com/Ruks-7" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>