-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
488 lines (462 loc) · 22.1 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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<!-- register service worker -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('./service-worker.js')
.then(() => { console.log('[ PWA Fire Bundle ] Service Worker Registered'); });
});
}
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VUYANZI GLORIOUS</title>
<!-- Theme color -->
<meta name="theme-color" content="#fff">
<meta name="apple-mobile-web-app-status-bar" content="#fff">
<!-- Main styles -->
<link rel="stylesheet" href="./dist/css/styles.css">
<!-- Fontawesome icons -->
<script src="https://kit.fontawesome.com/885fbd8d84.js"></script>
</head>
<body>
<header id="header" class="header-wrapper">
<header class="header">
<div class="logo">
<img src="./images/Logo.png" alt="Author image">
</div>
<nav class="nav main-menu">
<menu class="menu">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#blog">Blog</a></li>
</ul>
</menu>
<div class="mode-ctrl">
<label for="themeToggle">Dark mode</label>
<div>
<input type="checkbox" name="mode" id="themeToggle" class="theme-toggle">
<label for="themeToggle" class="theme-toggle-label"></label>
</div>
</div>
</nav>
<div class="menu-toggle bars">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</header>
</header>
<div class="container">
<div class="content">
<canvas class="background"></canvas>
<!-- Home -->
<section id="home" class="home">
<div class="author-details">
<div class="author-title">
<h1>UI/UX Designer and Web Developer</h1>
</div>
<div class="author-bio">
<p>I code and design beautiful simple things, <br /> and I love what I do.</p>
</div>
<div class="author-accounts">
<ul>
<li><a class="btn btn-icon--bg btn-icon--circle"
href="https://www.linkedin.com/in/glorious-vuyanzi/" target="_blank"><i
class="fab fa-linkedin"></i></a></li>
<li><a class="btn btn-icon--bg btn-icon--circle" href="https://github.com/Vuyanzi"
target="_blank"><i class="fab fa-github"></i></a></li>
<li><a class="btn btn-icon--bg btn-icon--circle" href="#" target="_blank"><i
class="fab fa-dribbble"></i></a></li>
<li><a class="btn btn-icon--bg btn-icon--circle" href="#" target="_blank"><i
class="fab fa-codepen"></i></a></li>
</ul>
</div>
<div class="actions">
<a href="#"><button class="btn btn-primary btn--rounded">Hire me</button></a>
<a href="#" target="_blank"><button class="btn btn-primary btn--rounded">Freelance
services</button></a>
</div>
</div>
<div class="author-avatar">
<img src="./images/bebe.jpeg" alt="Author image">
</div>
</section>
<!-- About -->
<section id="about" class="about">
<h1>About</h1>
<div class="author-about">
<div class="about-summary">
<h3 style="font-weight: bold">Hello, I'm Vuyanzi.Nice to meet you.</h3></br>
<p>
Since I begun my journey in tech a year ago,<br />I have collaborated with talented teams to
build and design digital products <br /> for both businesses and consumer use.<br />I am
passionate about emerging technologies and how they apply in our daily lives.
</p>
</div>
</div>
<div class="services">
<h1 class="center">What I do</h1>
<div class="author-services">
<div class="service-card">
<h3><i class="fas fa-palette"></i> UI/UX design</h3>
<hr>
<p>I value simplicity and work towards protraying that in all my designs.</p></br>
<p>What I enjoy designing:</p>
<p>Web & Android Apps</p></br>
<p>Design Tools:</p>
<ul style="list-style-type:none">
<li>Adobe XD</li>
<li>Figma</li>
<li>Balsamiq Mockups</li>
</ul>
</div>
<div class="service-card">
<h3><i class="fas fa-code"></i> Web development</h3>
<hr>
<p>I develop portfolios, static websites
and dynamic web-apps.</p>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills" class="skills">
<div class="author-skills">
<h1>Skills</h1>
<div class="set">
<h3>Front-end</h2>
<p>HTML, CSS(SASS), JS</p>
</div>
<div class="set">
<h3>Back-end</h2>
<P>Python</P>
<P>PHP</P>
</div>
<div class="set">
<h3>Toolkits</h2>
<P>Gulp, Browsersync</P>
</div>
<div class="set">
<h3>Frameworks</h3>
<p>Django</p>
</div>
</div>
<div class="skills-illustration">
<img src="./images/dev_focus.svg" alt="Skills illustration">
</div>
</section>
<!-- Projects -->
<section id="projects" class="projects">
<h1 class="center">Projects</h1>
<div class="author-projects">
<div class="project">
<img src="./images/dsc.png" alt="Project name">
<div class="project-summary">
<div class="languages">
<p>Developer Student Clubs</p>
</div>
<div class="description">
Help run and organize sessions to train students on Google technologies hence enabling
them to use their knowledge to develop solutions for our community.
</div>
<div class="action">
<a href="#"><button class="btn btn-secondary btn--rounded">View</button></a>
</div>
</div>
</div>
<div class="project">
<img src="./images/hitajy.png" width="20" alt="Project name">
<div class="project-summary">
<div class="languages">
<p>Hitaji Development Initiative</p>
</div>
<div class="description">
Mentor and encourage girls from humble backgrounds to pursue tech-related courses.
</div>
<div class="action">
<a href="#"><button class="btn btn-secondary btn--rounded">View</button></a>
</div>
</div>
</div>
<div class="project">
<img src="./images/mmust.jpg" width="200" alt="Project name">
<div class="project-summary">
<div class="languages">
<p>Association of Computing Students (ACS)</p>
</div>
<div class="description">
Organize tech events and meetups that aim at improving the tech skills of my fellow
colleagues.
</div>
<div class="action">
<a href="#"><button class="btn btn-secondary btn--rounded">View</button></a>
</div>
</div>
</div>
<div class="project">
<img src="./images/rotaract.jpg" alt="Project name">
<div class="project-summary">
<div class="languages">
<p>Rotaract club of Masinde Muliro University of Science and Technology</p>
</div>
<div class="description">
Incharge of coming up with humanitarian projects and seeing that they push through
successfully.
</div>
<div class="action">
<a href="#"><button class="btn btn-secondary btn--rounded">View</button></a>
</div>
</div>
</div>
<div class="project">
<img src="./images/nathan.jpg" alt="Project name">
<div class="project-summary">
<div class="languages">
<p>Nathan hall Williams Centre</p>
</div>
<div class="description">
Helps and organizes for free medical camps,registers clients and has also been an
assistant trainer in water sanitation and hygiene programs in the community
</div>
<div class="action">
<a href="#"><button class="btn btn-secondary btn--rounded">View</button></a>
</div>
</div>
</div>
<div class="project">
<img src="./images/technovation.jpg" alt="Project name">
<div class="project-summary">
<div class="languages">
<p>Technovation Safaricom</p>
</div>
<div class="description">
Made an application,with a group of girls from N’giya Girls High School,that helped
people with locating of desirable houses and at affordable prices using MIT app
inventor.
</div>
<div class="action">
<a href="#"><button class="btn btn-secondary btn--rounded">View</button></a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<!-- <section id="contact" class="contact">
<h1>Contact</h1>
<div class="author-contact">
<div class="author-contact-form" >
<form>
<div class="input-wrapper--outer">
<div class="input-wrapper--inner-dent">
<input type="text" name="fname" class="input" placeholder="First name">
</div>
<div class="input-wrapper--inner">
<input type="text" name="lname" class="input" placeholder="Last name">
</div>
</div>
<div class="input-wrapper--inner">
<input type="text" class="input" placeholder="Email">
</div>
<div class="input-wrapper--inner">
<textarea name="message" class="input" cols="30" rows="10"
placeholder="Message"></textarea>
</div>
<button type="submit" class="btn btn-primary btn--rounded btn--half-fit">Send
message</button>
</form>
</div>
<div class="author-contact-links">
<div class="contact-card">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="link">
<p>Nakuru</p>
</div>
</div>
<div class="contact-card">
<div class="icon">
<i class="fas fa-envelope"></i>
</div>
<div class="link">
<p>[email protected]</p>
</div>
</div>
<div class="contact-card">
<div class="icon">
<i class="fas fa-phone"></i>
</div>
<div class="link">
<p>+254 713 654 608</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- Blog -->
<!-- <section id="blog" class="blog">
<h1 class="center">Blog</h1>
<div class="author-blogs">
<div class="card">
<div class="card-image">
<a href="./blog.html">
<img src="./images/blog/blog1.jpg" alt="Blog 1">
</a>
</div>
<div class="card-details">
<div class="card-title">
<a href="./blog.html">
<h2>Amazing article from me to you</h2>
</a>
</div>
<div class="card-time">
<p>20th · Nov · 2019</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<a href="./blog.html">
<img src="./images/blog/blog2.jpg" alt="Blog 1">
</a>
</div>
<div class="card-details">
<div class="card-title">
<a href="./blog.html">
<h2>Amazing article from me to you</h2>
</a>
</div>
<div class="card-time">
<p>20th · Nov · 2019</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<a href="./blog.html">
<img src="./images/blog/blog3.jpg" alt="Blog 1">
</a>
</div>
<div class="card-details">
<div class="card-title">
<a href="./blog.html">
<h2>Amazing article from me to you</h2>
</a>
</div>
<div class="card-time">
<p>20th · Nov · 2019</p>
</div>
</div>
</div>
</div>
</section>
</div> -->
<!-- Floating contact me -->
<section id="floatingFormSection">
<div class="icon">
<span class="btn-primary" id="contactMe" title="Show Contact Form"><i
class="fas fa-envelope fa-2x"></i></span>
</div>
<div class="icon">
<span class="btn-primary" id="closeForm" title="Close Contact Form"><i
class="fas fa-times "></i></span>
</div>
<div class="author-contact-form" id="floatingForm">
<form>
<div class="input-wrapper--outer">
<div class="input-wrapper--inner-dent">
<label class="label">First Name</label>
<input type="text" name="fname" class="input">
</div>
<div class="input-wrapper--inner">
<label class="label">Last Name</label>
<input type="text" name="lname" class="input">
</div>
</div>
<div class="input-wrapper--inner">
<label class="label">Email</label>
<input type="text" class="input">
</div>
<div class="input-wrapper--inner">
<label class="label">Kindly type your message below and I will get back to you as soon as
possible;</label>
<textarea name="message" class="input" cols="30" rows="10" placeholder="Message"></textarea>
</div>
<button type="submit" class="btn btn-primary btn--rounded btn--half-fit">Send</button>
</form>
</div>
</section>
</div>
<footer id="footer" class="footer-wrapper">
<div class="footer">
<div class="logo">
<a href="/me">
<h1>Vuyanzi Glorious</h1>
</a>
<h5>Existing, continiously learning, and leveling up one day at a time</h5>
</div>
<nav class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a target="_blank" href="https://twitter.com/VuyanziG">Twitter</a></li>d
<li><a target="_blank" href="https://www.facebook.com/vuyanzi.glorious">Facebook</a></li>
</ul>
</nav></br>
<div class="credits">
<small>
Built from scratch with
<span role="img" aria-label="Fire">:)</span>
by Vuyanzi in
<span role="img" aria-label="Sun">*</span>
Nairobi
<span role="img" aeia-label="Palm tree">~</span>
2020
</small>
</div>
</div>
</footer>
<script type="module" src="./dist/js/main.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="./dist/js/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.3/particles.min.js"></script>
<script>
const particles = {
selector: '.background',
maxParticles: 500,
color: '#000000',
connectParticles: true,
responsive: [{
breakpoint: 768,
options: {
maxParticles: 100,
connectParticles: true
}
}, {
breakpoint: 425,
options: {
maxParticles: 50,
connectParticles: true
}
}, {
breakpoint: 320,
options: {
maxParticles: 0
}
}]
};
window.onload = function () {
Particles.init(particles);
};
</script>
</body>
</html>