forked from Swattyoungboy/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
724 lines (564 loc) · 33.8 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
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<!--=============== BOXICONS ===============-->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Abdulrahman Jibril</title>
</head>
<body>
<!--=============== HEADER ===============-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">Swatt Tech</a>
<div class="nav__menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link ">
<i class='bx bx-home-alt' > </i>
</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">
<i class='bx bx-user' > </i>
</a>
</li>
<li class="nav__item">
<a href="#skills" class="nav__link">
<i class='bx bx-book' ></i>
</a>
</li>
<li class="nav__item">
<a href="#work" class="nav__link">
<i class='bx bx-briefcase-alt-2' ></i>
</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">
<i class='bx bx-message-square-detail'></i>
</a>
</li>
</ul>
</div>
<!-- Theme change button -->
<i class='bx bx-moon change-theme' id="theme-button"></i>
</nav>
</header>
<!--=============== MAIN ===============-->
<main class="main">
<!--=============== HOME ===============-->
<section class="home section" id="home">
<div class="home__container container grid">
<div class="home__data">
<span class="home__greeting">
Hello, I'm
</span>
<h1 class="home__name">Abdulrahman Jibril</h1>
<h3 class="home__education">Full Stack Developer</h3>
<div class="home__buttons">
<a download="" href="assets/pdf/CV.pdf" class="button button--ghost">Download CV</a>
<a href="#about" class="button">About</a>
</div>
</div>
<div class="home__handle">
<img src="assets/img/firstimage.jpg" alt="" class="home__img">
</div>
<div class="home__social">
<a href="https://www.linkedin.com/in/abdulrahman-jibril-605871204/" target="_blank" class="home__social-link">
<i class='bx bxl-linkedin-square'></i>
</a>
<a href="https://github.com/Swattyoungboy" target="_blank" class="home__social-link">
<i class='bx bxl-github' ></i>
</a>
<a href="https://www.instagram.com/swatt_youngboy/?hl=en" target="_blank" class="home__social-link">
<i class='bx bxl-instagram' ></i>
</a>
</div>
<a href="#about" class="home__scroll">
<i class='bx bx-mouse home__scroll-icon' ></i>
<span class="home__scroll-name">Scroll Down</span>
</a>
</div>
</section>
<!--=============== ABOUT ===============-->
<section class="about section" id="about">
<span class="section__subtitle">My Intro</span>
<h2 class="section__title">About Me</h2>
<div class="about__container container grid">
<img src="assets/img/second.jpg" alt="" class="about__img">
<div class="about__data">
<div class="about__info">
<div class="about__box">
<i class='bx bx-award' ></i>
<h3 class="about__title">
Experience
</h3>
<span class="about__subtitle">6 Months Working</span>
</div>
<div class="about__box">
<i class='bx bx-briefcase-alt' ></i>
<h3 class="about__title">
Completed
</h3>
<span class="about__subtitle">8 + Projects</span>
</div>
<div class="about__box">
<i class='bx bx-support' ></i>
<h3 class="about__title">
Support
</h3>
<span class="about__subtitle">Online 24/7</span>
</div>
</div>
<p class="about__description">
Full Stack Developer, I create Web Pages, Mobile Applications and Softwares with UI / UX User Interface, I have Experience with the job and many clients are happy with the projects carried out.
</p>
<a href="#contact" class="button">Contact Me</a>
</div>
</div>
</section>
<!--=============== SKILLS ===============-->
<section class="skills section" id="skills">
<span class="section__subtitle">My abilities</span>
<h2 class="section__title">My Experience</h2>
<div class="skills__container container grid">
<div class="skills__content">
<h3 class="skills__title">Frontend Developer</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">HTML</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">CSS</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">JAVASCRIPT</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
</div>
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">DART</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">Git</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">Bootstrap</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
</div>
</div>
</div>
<div class="skills__content">
<h3 class="skills__title">Backend Developer</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">PHP</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">Node Js</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">Python</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
</div>
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">Firebase</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">Laravel</h3>
<span class="skills__level">Basic</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check'></i>
<div>
<h3 class="skills__name">MySql</h3>
<span class="skills__level">Advanced</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=============== SERVICES ===============-->
<section class="services section">
<span class="section__subtitle">My Services</span>
<h2 class="section__title">What I Offer</h2>
<div class="services__container container grid">
<div class="services__card">
<i class='bx bx-timer services1__icon'></i>
<h3 class="services__title">Mobile App <br> Dev't</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close' ></i>
<h3 class="services__modal-title">Mobile App Developer</h3>
<p class="services__modal-description">
Develop Cross platform Apps that are Responsive to all Devices.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
I Create prototypes and different app layouts for the client to choose from.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
I perform Corrective and preventive maintenance on the App to reduce errors.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
I make cross platform apps that work both on Android and Ios.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
I do Evolutionary maintenance to keep up with the market trend e.t.c.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<i class='bx bx-credit-card-front services1__icon'></i>
<h3 class="services__title">Web App <br> Dev't</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close' ></i>
<h3 class="services__modal-title">Web App Developer</h3>
<p class="services__modal-description">
We build responsive websites optimized for the most popular search engines. We deal with quality websites ONLY.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Develop different layouts of the website from which the client can pick from.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Develop responsive websites and UX that could be applied to any technological device.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Maintenance is done on the website.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<i class='bx bxl-graphql services1__icon'></i>
<h3 class="services__title">UI/UX <br> Designer</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close' ></i>
<h3 class="services__modal-title">UI/UX Developer</h3>
<p class="services__modal-description">
We develop beautiful user interfaces that shall make your customers pleased and not wanna leave your site.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Develop concise and responsive User interfaces
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Develop Attractive, Clear and Efficient designs.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<i class='bx bxs-edit services1__icon' ></i>
<h3 class="services__title">Backend <br> Developer </h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close' ></i>
<h3 class="services__modal-title">Backend Developer</h3>
<p class="services__modal-description">
Optimize different framework to create a stable and fast backend for your apps.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Provide well structured schemas for Efficient data storage and access.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
use frameworks that would greatly suit your project.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<i class='bx bx-book-content services1__icon'></i>
<h3 class="services__title">Responsive <br> Layouts </h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close' ></i>
<h3 class="services__modal-title">Responsive Layouts</h3>
<p class="services__modal-description">
Develop Cross platform web designs that are Responsive to all Devices.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
I Create prototypes and different app layouts for the client to choose from.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Remodelling is done for the site to fit all screen sizes.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<i class='bx bx-message-dots services1__icon'></i>
<h3 class="services__title">Social <br> Media </h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close' ></i>
<h3 class="services__modal-title">Social Media Advertisement</h3>
<p class="services__modal-description">
paid promotional communication that attempts to induce consumers to purchase a product.
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Run your ad campaigns using automated software.
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Help in research of project audience.
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--=============== WORK ===============-->
<section class="work section" id="work">
<span class="section__subtitle">My portfolio</span>
<h2 class="section__title">Recent Works</h2>
<div class="work__container container grid">
<div class="work__card">
<img src="assets/img/work1.jpg" alt="" class="work__img">
<h3 class="work__title">Blue Economy Summit Website</h3>
<a href="https://swattyoungboy.github.io/summit/" target="_blank" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card">
<img src="assets/img/work2.jpg" alt="" class="work__img">
<h3 class="work__title">Jamiliano Biryani Website</h3>
<a href="https://swattyoungboy.github.io/Jamiliano/" target="_blank" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card">
<img src="assets/img/work3.jpg" alt="" class="work__img">
<h3 class="work__title">Swatt Tech Solutions website</h3>
<a href="https://swattyoungboy.github.io/tech-solutions/" target="_blank" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
</div>
</section>
<!--=============== CONTACT ===============-->
<section class="contact section" id="contact">
<span class="section__subtitle">Get in touch</span>
<h2 class="section__title">Contact Me</h2>
<div class="contact__container container grid">
<div class="contact__content">
<h3 class="contact__title">Talk to me</h3>
<div class="contact__info">
<div class="contact__card">
<i class='bx bx-mail-send contact__card-icon'></i>
<h3 class="contact__card-title">Email</h3>
<span class="contact__card-data">[email protected]</span>
<a href="mailto:[email protected]" target="_blank" class="contact__button">
Write me <i class='bx bx-right-arrow-alt contact__button-icon' ></i>
</a>
</div>
<div class="contact__card">
<i class='bx bxl-whatsapp contact__card-icon' ></i>
<h3 class="contact__card-title">Whatsapp</h3>
<span class="contact__card-data">+254 113313338</span>
<a href="https://api.whatsapp.com/send?phone=+254113313338&text=Hello, Abdulrahman!" target="_blank" class="contact__button">
Write me <i class='bx bx-right-arrow-alt contact__button-icon' ></i>
</a>
</div>
<div class="contact__card">
<i class='bx bxl-instagram contact__card-icon' ></i>
<h3 class="contact__card-title">Instagram</h3>
<span class="contact__card-data">swatt_youngboy</span>
<a href="https://www.instagram.com/swatt_youngboy/?hl=en" target="_blank" class="contact__button">
Write me <i class='bx bx-right-arrow-alt contact__button-icon' ></i>
</a>
</div>
</div>
</div>
<div class="contact__content">
<h3 class="contact__title">Write me your project</h3>
<form action="" class="contact__form">
<div class="contact__form-div">
<label for="" class="contact__form-tag">Names</label>
<input required type="text" placeholder="Insert your name" class="contact__form-input">
</div>
<div class="contact__form-div">
<label for="" class="contact__form-tag">Mail</label>
<input required type="email" placeholder="Insert your email" class="contact__form-input">
</div>
<div class="contact__form-div contact__form-area">
<label for="" class="contact__form-tag">Project</label>
<textarea required name="" id="" cols="30" rows="10" placeholder="Write your project" class="contact__form-input"></textarea>
</div>
<button type="submit" class="button">Send Message </button>
</form>
</div>
</div>
</section>
</main>
<!--=============== FOOTER ===============-->
<footer class="footer">
<div class="footer__container container">
<h1 class="footer__title">Swatt Tech.</h1>
<ul class="footer__list">
<li>
<a href="#home" class="footer__link">Home</a>
</li>
<li>
<a href="#about" class="footer__link">About</a>
</li>
<li>
<a href="#work" class="footer__link">Projects</a>
</li>
</ul>
<ul class="footer__social">
<a href="https://www.instagram.com/swatt_youngboy/?hl=en" target="_blank" class="footer__social-link">
<i class='bx bxl-instagram' ></i>
</a>
<a href="#" target="_blank" class="footer__social-link">
<i class='bx bxl-linkedin' ></i>
</a>
<a href="https://api.whatsapp.com/send?phone=+254113313338&text=Hello, Abdulrahman!" target="_blank" class="footer__social-link">
<i class='bx bxl-whatsapp' ></i>
</a>
</ul>
<span class="footer__copy">
© Swatt Tech. All Rights reserved.
</span>
</div>
</footer>
<!--=============== SCROLLREVEAL ===============-->
<script src=""></script>
<!--=============== SWIPER JS ===============-->
<script src="assets//js/swiper-bundle.min.js"></script>
<!--=============== MIXITUP FILTER ===============-->
<script src="assets/js/mixitup.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>