-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
535 lines (506 loc) · 19.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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jesse | Portfolio</title>
<link
href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./Strengths/CSS/style.css" />
</head>
<body>
<!--scroll top-->
<a href="#" class="scrolltop" id="scroll-top">
<i class="bx bx-chevron-up scrolltop__icon"></i>
</a>
<!--Header-->
<header class="l-header" id="header">
<nav class="nav bd-container">
<a href="#" class="nav__logo">Jesse Mulure</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#qualification" class="nav__link">Qualification</a>
</li>
<li class="nav__item">
<a href="#services" class="nav__link">Services</a>
</li>
<li class="nav__item">
<a href="#portfolio" class="nav__link">Portfolio</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">Contact</a>
</li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class="bx bx-menu"></i>
</div>
</nav>
</header>
<main class="l-main">
<!--Home-->
<section class="home" id="home">
<div class="home__container bd-container bd-grid">
<div class="home__data">
<span class="home__greeting">Hello, My name is</span>
<h1 class="home__name">Jesse Mulure</h1>
<span class="home__profession">Software Developer</span>
<a
download="cv"
href="./Strengths/PDF/Resume.pdf"
class="button button-light"
>Download CV</a
>
</div>
<div class="home__social">
<a href="https://x.com/jessesteel94" class="home__social-icon"
><i class="bx bxl-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/jesse-mulure-b98a06237/"
class="home__social-icon"
><i class="bx bxl-linkedin"></i
></a>
<a href="https://github.com/jessemulure" class="home__social-icon"
><i class="bx bxl-github"></i
></a>
<a href="https://web.whatsapp.com/" class="home__social-icon"
><i class="bx bxl-whatsapp"></i
></a>
</div>
<div class="home__img">
<img src="./Strengths/Images/Suit 2.jpg" alt="" />
</div>
</div>
</section>
<!--About-->
<section class="about section bd-container" id="about">
<span class="section-subtitle">About</span>
<h2 class="section-title">About Me</h2>
<div class="about__container bd-grid">
<div class="about__data bd-grid">
<p class="about__description">
<span>Hello, I am <br /></span>
A dynamic and inventive professional with excellent
problem-solving abilities and a commitment to continuous
improvement. An effective team collaborator, skilled in a wide
range of programming languages, including iOS-Swift, Python, Java,
JavaScript (Vue.js, React.js), HTML, and CSS. Equipped with strong
expertise in designing, developing, and maintaining software
applications, seeking roles as a Software Developer, UX/UI
Designer, or Graphic Designer.
</p>
<p class="about__description">
Seeking opportunities as a Software Developer, UX/UI Designer, or
Graphic Designer, bringing a strong ability to design, develop,
and maintain software applications.
</p>
<div>
<span class="about__number">4+</span>
<span class="about__achievement">Years of Experience</span>
</div>
</div>
<img src="./Strengths/Images/Bitmoji.jpg" alt="" class="about__img" />
</div>
</section>
<!--Qualification-->
<section class="qualification section bd-container" id="qualification">
<span class="section-subtitle">Experience and Education</span>
<h2 class="section-title">Qualification</h2>
<div class="qualification__container bd-grid">
<div class="qualification__content">
<h2 class="qualification__title">
<i class="bx bx-briefcase-alt qualification__title-icon"></i>
Work Experience
</h2>
<div class="qualification__data">
<h3 class="qualification__area">IT Intern</h3>
<div class="qualification__box">
<span class="qualification__work">
<i class="bx bx-briefcase-alt qualification__icon"></i>
Judiciary Milimani Law Court
</span>
<span class="qualification__work">
<i class="bx bx-calendar-alt qualification__icon"></i>
August 2023 - January 2024
</span>
</div>
</div>
<div class="qualification__data">
<h3 class="qualification__area">Graphics Designer</h3>
<div class="qualification__box">
<span class="qualification__work">
<i class="bx bx-briefcase-alt qualification__icon"></i>
FloAmbani Enterprise Ltd
</span>
<span class="qualification__work">
<i class="bx bx-calendar-alt qualification__icon"></i>
August 2023 - Present(Part time)
</span>
</div>
</div>
</div>
</div>
<div class="qualification__content">
<h2 class="qualification__title">
<i class="bx bx-book-bookmark qualification__title-icon"></i>
Education Experience
</h2>
<div class="bd-grid">
<div class="qualification__data">
<h3 class="qualification__area">Bsc. Business Information Technology</h3>
<div class="qualification__box">
<span class="qualification__work">
<i class="bx bx-book-alt qualification__icon"></i>
JKUAT Karen Campus
</span>
<span class="qualification__work">
<i class="bx bx-calendar-alt qualification__icon"></i>
September 2021 - December 2025
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Services-->
<section class="services section bd-container" id="services">
<span class="section-subtitle">What I offer</span>
<h2 class="section-title">Services</h2>
<div class="services__container bd-grid">
<div class="services__data">
<i class="bx bx-laptop services__icon"></i>
<h3 class="services__title">web Development</h3>
<p class="services__description">
Start with something simple and small, then expand over time.
</p>
<a
href="https://github.com/jessemulure"
target="know"
class="button"
>
Know More</a
>
</div>
<div class="services__data">
<i class="bx bx-palette services__icon"></i>
<h3 class="services__title">UI/UX Design</h3>
<p class="services__description">
Paul Rand said, "Design is so simple. That's why it's so complicated"
</p>
<a
href="https://photos.app.goo.gl/U63KWQVyQC6MkAkf7"
class="button"
target="know"
>
Know More</a
>
</div>
<div class="services__data">
<i class="bx bx-camera services__icon"></i>
<h3 class="services__title">Video Editing</h3>
<p class="services__description">
Your mobile device has quickly become the easiest portal into your
digital self.
</p>
<a
href="https://photos.app.goo.gl/U63KWQVyQC6MkAkf7"
class="button"
target="know"
>
Know More</a
>
</div>
</div>
</section>
<!--Porfolio-->
<section class="portfolio section bd-container" id="portfolio">
<span class="section-subtitle">My recent projects</span>
<h2 class="section-title">Porfolio</h2>
<div class="portfolio__nav">
<span class="portfolio__item active-portfolio" data-filter="all"
>All</span
>
<span class="portfolio__item" data-filter=".web">Web</span>
<span class="portfolio__item" data-filter=".ui">UI/UX</span>
<span class="portfolio__item" data-filter=".app">Editor</span>
</div>
<div class="portfolio__container bd-grid">
<!---Web sections-->
<div class="portfolio__content mix web">
<a href="#"
><img
src="./Strengths/Images/calc.png"
alt=""
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">web Development</span>
<a href="https://github.com/jessemulure"
><h2 class="portfolio__title">A simple Calculator</h2></a
>
<a
href="https://github.com/jessemulure"
target="details"
class="button button-link"
>View Details</a
>
</div>
</div>
<div class="portfolio__content mix web">
<a href="#"
><img
src="./Strengths/Images/tribute.jpg"
alt="Best"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">web Development</span>
<a href="https://github.com/jessemulure" target="neat"
><h2 class="portfolio__title">A simple Tribute Web page</h2></a
>
<a
href="https://github.com/jessemulure"
class="button button-link"
>View Details</a
>
</div>
</div>
<div class="portfolio__content mix web">
<a href="#"
><img
src="./Strengths/Images/tic-tac-toe.png"
alt="Best"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">web Development</span>
<a href="https://github.com/jessemulure" target="neat"
><h2 class="portfolio__title">A simple Tic-tac</h2></a
>
<a
href="https://github.com/jessemulure"
class="button button-link"
>View Details</a
>
</div>
</div>
<!---UI sections-->
<div class="portfolio__content mix ui">
<a href="#"
><img
src="./Strengths/Images/58.jpg"
alt="neat"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">Graphic Designs</span>
<a
href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
target="neat"
><h2 class="portfolio__title">Flyer|Posters</h2></a
>
<a
href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
target="neat"
class="button button-link"
>View Details</a
>
</div>
</div>
<div class="portfolio__content mix ui">
<a href="#"
><img
src="./Strengths/Images/best.jpg"
alt="neat"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">Graphic Design</span>
<a href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
><h2 class="portfolio__title">Banners</h2></a
>
<a
href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
target="neat"
class="button button-link"
>View Details</a
>
</div>
</div>
<div class="portfolio__content mix ui">
<a href="#"
><img
src="./Strengths/Images/Logo.png"
alt="neat"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">Graphic Design</span>
<a href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
><h2 class="portfolio__title">Logos|Business Cards</h2></a
>
<a
href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
target="neat"
class="button button-link"
>View Details</a
>
</div>
</div>
<!---Editor sections-->
<div class="portfolio__content mix app">
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
><img
src="./Strengths/Images/Img1.jpeg"
alt="edit"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">A Marketing Ad</span>
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
><h2 class="portfolio__title">Roy Globally Solution Limited</h2></a
>
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
target="neat"
class="button button-link"
>View Details</a
>
</div>
</div>
<div class="portfolio__content mix app">
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
><img
src="./Strengths/Images/Img2.jpg"
alt="edit"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">One Edit at a time</span>
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
><h2 class="portfolio__title">Movie Scenes</h2></a
>
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
target="neat"
class="button button-link"
>View Details</a
>
</div>
</div>
<div class="portfolio__content mix app">
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
><img
src="./Strengths/Images/Img3.jpg"
alt="edit"
class="portfolio__img"
/></a>
<div class="portfolio__data">
<span class="portfolio__subtitle">Lets make magic</span>
<a
href="https://photos.app.goo.gl/BC7smE9jhtMda4Fh6"
><h2 class="portfolio__title">Job Ads</h2></a
>
<a
href="https://photos.app.goo.gl/9uH71zvLJfPmJ7QH6"
target="neat"
class="button button-link"
>View Details</a
>
</div>
</div>
</section>
<!--Testimonials-->
<!--contact Me-->
<section class="contact section bd-container" id="contact">
<span class="section-subtitle">For Projects</span>
<h2 class="section-title">Lets Chat</h2>
<div class="contact__container bd-grid">
<div class="contact__content bd-grid">
<div class="contact__box">
<i class="bx bxs-phone contact__icon"></i>
<h3 class="contact__title">Phone</h3>
<span class="contact__description">+254 759398188</span>
</div>
<div class="contact__box">
<i class="bx bxs-envelope contact__icon"></i>
<h3 class="contact__title">Gmail</h3>
<span class="contact__description">mulurembayi@gmail.com</span>
</div>
<div class="contact__box">
<i class="bx bxs-chat contact__icon"></i>
<h3 class="contact__title">Chat</h3>
<div>
<a
href="https://wa.me/254784071977"
target="chat"
class="contact__social"
><i class="bx bxl-whatsapp"></i
></a>
<a
href="https://x.com/jessesteel94"
target="chat"
class="contact__social"
><i class="bx bxl-twitter"></i
></a>
<a
href="https://mail.google.com/mail/u/0/#inbox"
target="chat"
class="contact__social"
><i class="bx bxs-envelope"></i
></a>
</div>
</div>
</div>
</div>
</section>
</main>
<!--footer-->
<footer class="footer">
<div class="footer__container bd-container">
<h1 class="footer__title">Jesse Mulure</h1>
<p class="footer__description">My portfolio</p>
<div class="footer__social">
<a
href="https://www.linkedin.com/in/jesse-mulure-b98a06237/"
class="footer__link"
><i class="bx bxl-linkedin"></i
></a>
<a href="https://github.com/jessemulure" class="footer__link"
><i class="bx bxl-github"></i
></a>
<a href="https://wa.me/254784071977" class="footer__link"
><i class="bx bxl-whatsapp"></i
></a>
</div>
<p id="date" class="footer__copy"></p>
<span class="footer__copy">© Jesse Mulure</span>
</div>
</footer>
<!--Mix it up filter-->
<script src="./Strengths/Js/mixitup.main.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<!--swiper js-->
<script src="./Strengths/Js/main.js"></script>
</body>
<script>
const year = new Date();
document.getElementById("date").innerHTML = year.getFullYear();
</script>
</html>