-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
360 lines (340 loc) · 17.6 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/Frame%2059188.png">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.11/typed.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo"><a href="#"><img src="images/Frame%2059189.png" alt=""></a></div>
<ul class="menu">
<li><a href="#home" class="menu-btn">Home</a></li>
<li><a href="#about" class="menu-btn">About</a></li>
<li><a href="#services" class="menu-btn">Services</a></li>
<li><a href="#skills" class="menu-btn">Skills</a></li>
<li><a href="#teams" class="menu-btn">Projects</a></li>
<li><a href="#contact" class="menu-btn">Contact</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<!-- home section start -->
<div class="home" id="home">
<div class="max-width">
<div class="home-content">
<div class="text-1">Hello, my name is</div>
<div class="text-2">Amarachi Iheakam</div>
<div class="text-3">And I'm a <span class="typing"></span></div>
<a href="#contact">Hire me</a>
</div>
</div>
</div>
<!-- about section start -->
<section class="about" id="about">
<div class="max-width">
<h2 class="title">About me</h2>
<div class="about-content">
<div class="column left">
<img src="images/about.jpg" alt="">
</div>
<div class="column right">
<div class="text">Hello! I'm Amarachi and I'm a <span class="typing-2"></span></div>
<p>I enjoy creating amazing designs and seeing my work on the net and in use. I graduated as a microbiologist; my interest in tech started in December 2021, when I decided to start taking online lectures -- turns out there are a lot of things you can learn with just a little determination.</p>
<p> I took up git/github, html and css for starters and over time became adept at Javascript, PHP, Python, and product design inclusive of UI/UX. It gives me so much joy that I took this bold step in my career path, and I find the experience of learning new things daily to be amazing.</p>
<a href="Amarachi Iheakam CV.pdf" download>Download CV</a>
</div>
</div>
</div>
</section>
<!-- services section start -->
<section class="services" id="services">
<div class="max-width">
<h2 class="title">My services</h2>
<div class="serv-content">
<div class="card">
<div class="box">
<i class="fas fa-paint-brush"></i>
<div class="text">UI/UX design</div>
<p>Awesome designs with user experience considered as the most important for both apps and websites</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-code"></i>
<div class="text">Web Development</div>
<p>My service includes the frontend and backend developments of websites</p>
</div>
</div>
</div>
</div>
</section>
<!-- skills section start -->
<section class="skills" id="skills">
<div class="max-width">
<h2 class="title">My skills</h2>
<div class="skills-content">
<div class="column left">
<div class="text">My creative skills & experiences.</div>
<p>The best of all my skills were acquired during team projects, i worked in a team that comprised of both product designers and developers. Below are some of the projects i've worked on</p>
<a href="#teams">Projects</a>
</div>
<div class="column right">
<div class="bars">
<div class="info">
<span>Product Design (including UI/UX design)</span>
<span>90%</span>
</div>
<div class="line html"></div>
</div>
<div class="bars">
<div class="info">
<span>HTML</span>
<span>90%</span>
</div>
<div class="line html"></div>
</div>
<div class="bars">
<div class="info">
<span>CSS</span>
<span>90%</span>
</div>
<div class="line html"></div>
</div>
<div class="bars">
<div class="info">
<span>JavaScript</span>
<span>50%</span>
</div>
<div class="line php"></div>
</div>
<div class="bars">
<div class="info">
<span>PHP</span>
<span>80%</span>
</div>
<div class="line js"></div>
</div>
<div class="bars">
<div class="info">
<span>MySQL</span>
<span>60%</span>
</div>
<div class="line css"></div>
</div>
</div>
</div>
</div>
</section>
<!-- teams section start -->
<section class="teams" id="teams">
<div class="max-width">
<h2 class="title">My Projects</h2>
<h4 style="color: white; font-size: 25px; text-decoration: underline; text-decoration-color: #E106D8; text-align: center;">Design Projects</h4><br>
<div class="carousel owl-carousel">
<div class="card">
<div class="box">
<img src="images/Desktop.png" alt="">
<div class="text">Shoplyt</div>
<p>A dashboard for the users hosting their shops on Shoplyt.<br>
<a href="https://www.figma.com/file/1BpGJqlXAbzgTZ7WqUXarL/Shoplyt?node-id=22%3A137&t=1souZxjJCre7OMwy-1" style="color: #3BB143; font-weight: 700;">View full design</a>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/Agroby.png" alt="">
<div class="text">Agroby</div>
<p>A mobile app design for an agricultural community<br>
<a href="https://www.figma.com/file/U96oD0l4fjckJLskVZcfCa/Agroby-Mobile-App?node-id=65%3A1900&t=aiWcpzB2EfSS6Ynn-1" style="color: #3BB143; font-weight: 700;">View full design</a>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/Frame%2059192.png" alt="">
<div class="text">TuteeReelz</div>
<p>A video streaming design for college students<br>
<a href="https://www.figma.com/file/1z4RcPBcSRxW9bsN7st7IO/TuteeReelz-website?node-id=140%3A5108&t=vjTJdWvjv6VjK0P0-1" style="color: #3BB143; font-weight: 700;">View full design</a>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/SIGN%20UP.png" alt="">
<div class="text">Freebies</div>
<p>An online library website design. Users can borrow books as well<br>
<a href="https://www.figma.com/file/DYuZAvVg7yXSfcjUtnCGys/Library-Mini-Project?node-id=10%3A3585&t=u2Cu0bzLCOCiy93j-1" style="color: #3BB143; font-weight: 700;">View full design</a>
</p>
</div>
</div>
</div>
<br>
<h4 style="color: white; font-size: 25px; text-decoration: underline; text-decoration-color: #E106D8; text-align: center;">Frontend projects</h4><br>
<div class="carousel owl-carousel">
<div class="card">
<div class="box">
<img src="images/camptools.PNG" alt="">
<div class="text">Camptools</div>
<p>A website for users to buy tools needed for camping<br>
<br>
<div class="project-buttons">
<a class="viewcode" href="https://github.com/Cozyamy/Camp_tools">View Codes</a>
<a style="margin-left: 10px;" class="viewsite" href="https://cozyamy.github.io/Camp_tools">Visit Site</a>
</div>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/orderpage.PNG" alt="">
<div class="text">Order summary</div>
<p>A website Page displaying a music order Summary<br>
<br>
<div class="project-buttons">
<a class="viewcode" href="https://github.com/Cozyamy/order-summary-component">View Codes</a>
<a style="margin-left: 10px;" class="viewsite" href="https://cozyamy.github.io/order-summary-component/">Visit Site</a>
</div>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/social.PNG" alt="">
<div class="text">Social Proof</div>
<p>A website Page displaying a section for social proof<br>
<br>
<div class="project-buttons">
<a class="viewcode" href="https://github.com/Cozyamy/social-proof-section">View Codes</a>
<a style="margin-left: 10px;" class="viewsite" href="https://cozyamy.github.io/social-proof-section">Visit Site</a>
</div>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/NFT_component.PNG" alt="">
<div class="text">NFT preview card</div>
<p>A web page for NFT preview card component<br>
<br>
<div class="project-buttons">
<a class="viewcode" href="https://github.com/Cozyamy/nft-preview-card.git">View Codes</a>
<a style="margin-left: 10px;" class="viewsite" href="https://cozyamy.github.io/nft-preview-card">Visit Site</a>
</div>
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/huddlepics.PNG" alt="">
<div class="text">Huddle</div>
<p>A website Page for a community, Users engage in genuine discussion<br>
<br>
<div class="project-buttons">
<a class="viewcode" href="https://github.com/Cozyamy/huddle">View Codes</a>
<a style="margin-left: 10px;" class="viewsite" href="https://cozyamy.github.io/huddle/">Visit Site</a>
</div>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- contact section start -->
<section class="contact" id="contact">
<div class="max-width">
<h2 class="title">Contact me</h2>
<div class="contact-content">
<div class="column left">
<div class="text">Get in Touch</div>
<p>Please feel free to contact me, I would respond within 12hrs of any enquiry; looking forward to hearing and working with you. </p>
<div class="icons">
<div class="row">
<i class="fas fa-user"></i>
<div class="info">
<div class="head">Name</div>
<div class="sub-title">Amarachi Iheakam</div>
</div>
</div>
<div class="row">
<i class="fas fa-map-marker-alt"></i>
<div class="info">
<div class="head">Address</div>
<div class="sub-title">Abia, Nigeria</div>
</div>
</div>
<div class="row">
<i class="fas fa-envelope"></i>
<div class="info">
<div class="head">Email</div>
<div class="sub-title">cozyamy@gmail.com</div>
</div>
</div>
<div class="row">
<i class='fas fa-phone-alt'></i>
<div class="info">
<div class="head">Call/SMS/Whatsapp</div>
<div class="sub-title">+234 806 303 0305</div>
</div>
</div>
</div>
</div>
<div class="column right">
<div class="text">Message me</div>
<form action="https://formspree.io/f/xoqzagoa" method="POST">
<div class="fields">
<div class="field name">
<input type="text" name="name" placeholder="Name" required>
</div>
<div class="field email">
<input type="email" name="email" placeholder="Email" required>
</div>
</div>
<div class="field">
<input type="text" name="subject" placeholder="Subject" required>
</div>
<div class="field textarea">
<textarea cols="30" rows="10" placeholder="Message.." name="message" required></textarea>
</div>
<div class="button-area">
<button type="submit">Send message</button>
</div>
</form>
</div>
</div>
<div class="badge">
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="dark" data-type="HORIZONTAL" data-vanity="amarachi-iheakam-94b30415b" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://ng.linkedin.com/in/amarachi-iheakam-94b30415b?trk=profile-badge"></a></div>
</div>
</div>
</section>
<!-- footer section start -->
<footer>
<div style="margin-bottom: 1%;">
<a href="https://twitter.com/AmyyCozy" class="twitter">
<i class="fa fa-twitter"></i>
</a>
<a href="https://github.com/Cozyamy" class="github">
<i class="fa fa-github"></i>
</a>
</div>
<span>Created By <a href="https://github.com/Cozyamy">Cozyamy</a> | <span class="far fa-copyright"></span> 2022 All rights reserved.</span>
</footer>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer></script>
<script src="script.js"></script>
</body>
</html>