-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1317 lines (1068 loc) · 46.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
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
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="img\favicon\icon128.png"/>
<!-- Scroll Bar -->
<style>
body {
/* overlay scrollbar to transparent */
overflow: overlay;
}
::-webkit-scrollbar {
/* rounded thumb size : set as 20px */
width: 15px;
background-color: transparent;
}
::-webkit-scrollbar-track {
/* scroll bar traparent : initalizing colorless & border radius as zero */
border-radius: 0px;
}
::-webkit-scrollbar-thumb {
/* rounded thumb : Border Radius */
border-radius: 20px;
/* height of thumb */
height: 40px;
/* thumb color */
background-color:rgb(179,0,255); background: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
}
/* thumb hover color */
::-webkit-scrollbar-thumb:hover {
background-color:rgb(179,0,255); background: linear-gradient(-90deg, rgba(179,0,255,1) 0%, rgba(231,0,255,1) 51%, rgba(255,0,254,1) 100%);
}
</style>
<!-- Scroll Bar Ended -->
<!-- Chatbot Start -->
<!-- Start Messenger Plugin -->
<!-- Messenger Chat Plugin Code -->
<div id="fb-root"></div>
<!-- Your Chat Plugin code -->
<div id="fb-customer-chat" class="fb-customerchat">
</div>
<script>
var chatbox = document.getElementById('fb-customer-chat');
chatbox.setAttribute("page_id", "856660438016598");
chatbox.setAttribute("attribution", "biz_inbox");
</script>
<!-- Your SDK code -->
<script>
window.fbAsyncInit = function() {
FB.init({
xfbml : true,
version : 'v16.0'
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<!-- End Messenger Plugin -->
<!-- Chatbot End -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>Ossama Mehmood</title>
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="img\favicon\icon128.png"/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="./css/style.css"
/>
<link rel="stylesheet" href="css/animate.css">
</head>
<body>
<!-- Hero Image Start -->
<main>
<header id="header">
<div class="overlay overlay-lg">
<img src="./img/shapes/square.png" class="shape square" alt="" />
<img src="./img/shapes/circle.png" class="shape circle" alt="" />
<img
src="./img/shapes/half-circle.png"
class="shape half-circle1"
alt=""
/>
<img
src="./img/shapes/half-circle.png"
class="shape half-circle2"
alt=""
/>
<img src="./img/shapes/x.png" class="shape xshape" alt="" />
<img src="./img/shapes/wave.png" class="shape wave wave1" alt="" />
<img src="./img/shapes/wave.png" class="shape wave wave2" alt="" />
<img src="./img/shapes/triangle.png" class="shape triangle" alt="" />
<img src="./img/shapes/letters.png" class="letters" alt="" />
<img src="./img/shapes/points1.png" class="points points1" alt="" />
</div>
<!-- Hero Image End -->
<!-- Header Start -->
<nav>
<div class="container">
<div class="logo">
<div class="skill-box wow fadeInUp animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;">
<img src="./img/logo.png" alt="" />
</div>
</div>
<div class="links">
<ul>
<li>
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<a href="#header">Home</a>
</div>
</li>
<li>
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<a href="#services">Services</a>
</div>
</li>
<li>
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<a href="#portfolio">Portfolio</a>
</div>
</li>
<li>
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<a href="#about">About</a>
</div>
</li>
<li>
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<a href="#testimonials">Testimonials</a>
</div>
</li>
<li>
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<a href="#contact">Contact</a>
</div>
</li>
<li>
<a href="#hireme" class="active">Hire me</a>
</li>
<li>
<a>
<input class="containertoggle" type="checkbox" id="toggle">
</a>
</li>
</ul>
</div>
<div class="hamburger-menu">
<div class="bar"></div>
</div>
</div>
</nav>
<!-- Header End -->
<!-- Hero Details Start -->
<div class="header-content">
<div class="container grid-2">
<div class="column-1">
<div class="skill-box wow fadeInLeft animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInLeft;">
<h1 class="header-title">OSSAMA M.</h1>
</div>
<div class="skill-box wow fadeInRight animated" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInRight;">
<p class="header-text">
Greetings, I'm Ossama Mehmood, Senior Graphic Designer and UI/UX Designer. Sole proprietorship
& Founder at Minimsam & Top Rated Designer
at Upwork!
</p>
</div>
<div class="skill-box wow fadeInUp animated" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;">
<a href="./img/Download Folio/Download Folio.pdf" class="btn-header">Download Folio</a>
</div>
<!-- Hero Details End -->
<!-- Services Start -->
</div>
<div class="column-2 image">
<img
src="./img/shapes/points2.png"
class="points points2"
alt=""
/>
<img src="./img/person.png" class="img-element z-index" alt="" />
</div>
</div>
</div>
</div>
</header>
<section class="services section" id="services">
<div class="container">
<div class="section-header">
<h3 class="title" data-title="What I Do">Services</h3>
<p class="text">
Specialized in working as a Senior Graphic Designer,
Brand Identity Strategist, Visual and UI/UX Designer.
</p>
</div>
<div class="cards">
<div class="card-wrap">
<img
src="./img/shapes/points3.png"
class="points points1 points-sq"
alt=""
/>
<div class="card" data-card="UI/UX">
<div class="card-content z-index">
<img src="./img/design-icon.png" class="icon" alt="" />
<h3 class="title-sm">Graphic Design</h3>
<p class="text">
Started my career at the age of Sixteen (16) as a Graphic
Designer.
Specialized in Graphic Deign with experience of five (5)
plus years.
</p>
<a href="#" class="btn small">Read more</a>
</div>
</div>
</div>
<div class="card-wrap">
<div class="card" data-card="Code">
<div class="card-content z-index">
<img src="./img/code-icon.png" class="icon" alt="" />
<h3 class="title-sm">Brand Identity & Visual</h3>
<p class="text">
Specialized in working as a Brand Identity Strategist,
and Visual Identity designer with with experience of four (4) years.
</p>
<a href="#" class="btn small">Read more</a>
</div>
</div>
</div>
<div class="card-wrap">
<img
src="./img/shapes/points3.png"
class="points points2 points-sq"
alt=""
/>
<div class="card" data-card="App">
<div class="card-content z-index">
<img src="./img/app-icon.png" class="icon" alt="" />
<h3 class="title-sm">UI/UX Design</h3>
<p class="text">
Specialization Google UX Designer (Professional Certified)
from Google through Coursera invested around Six (6) months.
</p>
<a href="#" class="btn small">Read more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services End -->
<!-- Portfolio Start -->
<header id="header">
<section class="portfolio section" id="portfolio">
<div class="background-bg">
<div class="overlay overlay-sm">
<img
src="./img/shapes/half-circle.png"
class="shape half-circle1"
alt=""
/>
<img
src="./img/shapes/half-circle.png"
class="shape half-circle2"
alt=""
/>
<img src="./img/shapes/square.png" class="shape square" alt="" />
<img src="./img/shapes/wave.png" class="shape wave" alt="" />
<img src="./img/shapes/circle.png" class="shape circle" alt="" />
<img
src="./img/shapes/triangle.png"
class="shape triangle"
alt=""
/>
<img src="./img/shapes/x.png" class="shape xshape" alt="" />
</div>
</div>
<div class="container">
<div class="section-header">
<h3 class="title" data-title="My works">Portfolio</h3>
</div>
<div class="section-body">
<div class="filter">
<button class="filter-btn active" data-filter="*">All</button>
<button class="filter-btn" data-filter=".ui">UI/UX</button>
<button class="filter-btn" data-filter=".webdev">Web Dev</button>
<button class="filter-btn" data-filter=".appdev">
Photoshop
</button>
<button class="filter-btn" data-filter=".logo-design">
Logo Design
</button>
</div>
<div class="grid">
<div class="grid-item logo-design">
<div class="gallery-image">
<img src="./img/portfolio/port1.jpg" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Logo Design</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item webdev">
<div class="gallery-image">
<img src="./img/portfolio/port2.png" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Web Development</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item ui webdev">
<div class="gallery-image">
<img src="./img/portfolio/port3.png" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Web Design</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item ui">
<div class="gallery-image">
<img src="./img/portfolio/port4.png" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>UI / UX Design</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item logo-design">
<div class="gallery-image">
<img src="./img/portfolio/port5.jpg" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Logo Design</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item appdev">
<div class="gallery-image">
<img src="./img/portfolio/port6.jpg" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Photo Revamping</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item logo-design">
<div class="gallery-image">
<img src="./img/portfolio/port7.jpg" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Logo Design</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item appdev ui">
<div class="gallery-image">
<img src="./img/portfolio/port8.png" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Photo Manipulation</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
<div class="grid-item ui webdev">
<div class="gallery-image">
<img src="./img/portfolio/port9.png" alt="" />
<div class="img-overlay">
<div class="plus"></div>
<div class="img-description">
<h3>Web Design</h3>
<h5>View Folio</h5>
</div>
</div>
</div>
</div>
</div>
<div class="more-folio">
<a href="https://www.behance.net/ossamamehmood" class="btn">More Folio</a>
</div>
</div>
</div>
</section>
</header>
<!-- Portfolio End -->
<!-- About Start -->
<header id="header">
<section class="about section" id="about">
<div class="container">
<div class="overlay overlay-lg">
<img src="./img/shapes/square.png" class="shape square" alt="">
<img src="./img/shapes/circle.png" class="shape circle" alt="">
<img src="./img/shapes/half-circle.png" class="shape half-circle1" alt="">
<img src="./img/shapes/half-circle.png" class="shape half-circle2" alt="">
<img src="./img/shapes/x.png" class="shape xshape" alt="">
<img src="./img/shapes/wave.png" class="shape wave wave1" alt="">
<img src="./img/shapes/wave.png" class="shape wave wave2" alt="">
<img src="./img/shapes/triangle.png" class="shape triangle" alt="">
<img src="./img/shapes/letters.png" class="letters" alt="">
<img src="./img/shapes/points1.png" class="points points1" alt="">
</div>
<div class="section-header">
<h3 class="title" data-title="Who Am I">About me</h3>
</div>
<div class="section-body grid-2">
<div class="column-1">
<div class="profile-desc wow fadeInRight animated" style="visibility: visible; animation-name: fadeInRight;">
<h3 class="title-sm">Greeting's, I'm Ossama Mehmood 샘</h3>
<p class="text">
✔ Started my career at the age of Sixteen (16) as a Graphic Designer.
I have five (5) plus years of predominant hands-on experience gained by
doing freelance on different platforms.
</p>
<p class="text">
✔ Currently specialized in working as a Senior Graphic Designer, Brand
Identity Strategist, Visual and UI//UX Designer.
</p>
<p class="text">
✔ Around 100+ Projects accomplished as a Graphic Designer throughout my
freelance journey.
</p>
<p class="text">
✔ 100% Job Success Score - More than 100 scenes modeled with Upwork
clients.
</p>
<p class="text">
✔ Top Rated Freelancer Acknowledgement from Upwork.
</p>
</div>
<div class="skills">
<div class="skill html">
<h3 class="skill-title">Graphic Design</h3>
<div class="skill-bar">
<div class="skill-progress" data-progress="99%"></div>
</div>
</div>
<div class="skill css">
<h3 class="skill-title">Brand Identity specialist</h3>
<div class="skill-bar">
<div class="skill-progress" data-progress="90%"></div>
</div>
</div>
<div class="skill css">
<h3 class="skill-title">Visual Design</h3>
<div class="skill-bar">
<div class="skill-progress" data-progress="85%"></div>
</div>
</div>
<div class="skill js">
<h3 class="skill-title">UI/UX Design</h3>
<div class="skill-bar">
<div class="skill-progress" data-progress="80%"></div>
</div>
</div>
</div>
<a href="#" class="btn">Read more</a>
</div>
<div class="column-2 image">
<img src="./img/shapes/points4.png" class="points" alt="" />
<img src="./img/about.png" class="z-index" class="imagerotate" alt="" />
</div>
</div>
</div>
</section>
</header>
<!-- About End -->
<!-- Projects Start -->
<section class="records">
<div class="overlay overlay-sm">
<img src="./img/shapes/square.png" alt="" class="shape square1" />
<img src="./img/shapes/square.png" alt="" class="shape square2" />
<img src="./img/shapes/circle.png" alt="" class="shape circle" />
<img
src="./img/shapes/half-circle.png"
alt=""
class="shape half-circle"
/>
<img src="./img/shapes/wave.png" alt="" class="shape wave wave1" />
<img src="./img/shapes/wave.png" alt="" class="shape wave wave2" />
<img src="./img/shapes/x.png" alt="" class="shape xshape" />
<img src="./img/shapes/triangle.png" alt="" class="shape triangle" />
</div>
<div class="container">
<div class="wrap">
<div class="record-circle">
<h2 class="number" data-num="110">0</h2>
<h4 class="sub-title">Projects</h4>
</div>
</div>
<div class="wrap">
<div class="record-circle active">
<h2 class="number" data-num="106">0</h2>
<h4 class="sub-title">Happy Clients</h4>
</div>
</div>
<div class="wrap">
<div class="record-circle">
<h2 class="number" data-num="234">0</h2>
<h4 class="sub-title">Work Hour</h4>
</div>
</div>
<div class="wrap">
<div class="record-circle active">
<h2 class="number" data-num="5">0</h2>
<h4 class="sub-title">Awards</h4>
</div>
</div>
</div>
</section>
<!-- Project End -->
<!-- Blog Start -->
<header id="header">
<section class="blog section">
<div class="container">
<div class="overlay overlay-lg">
<img src="./img/shapes/square.png" class="shape square" alt="">
<img src="./img/shapes/circle.png" class="shape circle" alt="">
<img src="./img/shapes/half-circle.png" class="shape half-circle1" alt="">
<img src="./img/shapes/half-circle.png" class="shape half-circle2" alt="">
<img src="./img/shapes/x.png" class="shape xshape" alt="">
<img src="./img/shapes/wave.png" class="shape wave wave1" alt="">
<img src="./img/shapes/wave.png" class="shape wave wave2" alt="">
<img src="./img/shapes/triangle.png" class="shape triangle" alt="">
<img src="./img/shapes/letters.png" class="letters" alt="">
<img src="./img/shapes/points1.png" class="points points1" alt="">
<img src="./img/shapes/points2.png" class="points points2" alt="">
<img src="./img/shapes/points3.png" class="points points3" alt="">
<img src="./img/shapes/points4.png" class="points points4" alt="">
</div>
<div class="section-header">
<h3 class="title" data-title="Last News">My blog</h3>
<p class="text">
Publish my passions your way: I’ll be happy to share knowledge,
experiences, or the latest news.
</p>
</div>
<div class="blog-wrapper">
<div class="blog-wrap">
<img
src="./img/shapes/points3.png"
alt=""
class="points points-sq"
/>
<div class="blog-card">
<div class="blog-image">
<img src="./img/myblog/blog1.png" alt="" />
</div>
<div class="blog-content">
<div class="blog-info">
<h5 class="blog-date">Not Yet Published</h5>
<h5 class="blog-user"><i class="fas fa-user"></i>Admin</h5>
</div>
<h3 class="title-sm">Coming Soon</h3>
<p class="blog-text">
Blog is only accessible to authors who have permission
to read it privately — Author-Open-Invitaions Only.
</p>
<a href="https://medium.com/@ossamamehmood" class="btn small">Read more</a>
</div>
</div>
</div>
<div class="blog-wrap">
<div class="blog-card">
<div class="blog-image">
<img src="./img/myblog/blog2.png" alt="" />
</div>
<div class="blog-content">
<div class="blog-info">
<h5 class="blog-date">August, 24 2020</h5>
<h5 class="blog-user"><i class="fas fa-user"></i>Admin</h5>
</div>
<h3 class="title-sm">Automation/Hack for Dinasour Game</h3>
<p class="blog-text">
It’s an endless running game, like a straight-line a version
of Temple Run with no levels.
</p>
<a href="https://medium.com/@ossamamehmood/automation-hack-for-dinasour-game-2b98a8cd42b6" class="btn small">Read more</a>
</div>
</div>
</div>
<div class="blog-wrap">
<div class="blog-card">
<div class="blog-image">
<img src="./img/myblog/blog3.png" alt="" />
</div>
<div class="blog-content">
<div class="blog-info">
<h5 class="blog-date">August, 04 2022</h5>
<h5 class="blog-user"><i class="fas fa-user"></i>Admin</h5>
</div>
<h3 class="title-sm">Dark Mode Without Any Extension Using Chrome</h3>
<p class="blog-text">
There’re many extension to turn on dark mode. Instead,
You can follow-up these simple steps to turn on Dark Mode
on your Chrome.
</p>
<a href="https://medium.com/@ossamamehmood/dark-mode-without-any-extension-using-chrome-e49a19db3782" class="btn small">Read more</a>
</div>
</div>
</div>
</div>
</div>
</section>
</header>
<!-- Blog End -->
<!-- Testimonials Start -->
<header id="header">
<section class="testimonials section" id="testimonials">
<div class="container">
<div class="section-header">
<h3 class="title" data-title="What People Say">Testimonials</h3>
</div>
<div class="testi-content grid-2">
<div class="column-1 reviews">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
"I am writing to let you know that Sam is highly competent on his fields.
He is a serious contractor who values his client's time.
He is very punctual on answering your requests for clarifications or
modifications in your projects after submission of the projects.
I will hire him again for all the digital needs of my business and
I will recommend him to everyone who needs a competent a digital engineer.
Sincerely yours, Joseph D., CAGS, QMP, CEO "
</p>
<div class="review-info">
<h3 class="review-name">Joseph D | Owner, Caps, Qmp</h3>
<h5 class="review-job">CEO at Dragon Health Care Services, LLC, USA</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
"I'm glad to have chosen Ossama to design my logo design! He nailed that on all
the concepts created. The one I decided to go on surpassed my expectations and
inspired me already on the products I'm building. The assets received are perfectly
accomplished. I'll definitely require his team services again. I highly recommend Ossama
for team-up projects and quick turnaround even for consultancy. He’s literally superb and proficient."
</p>
<div class="review-info">
<h3 class="review-name">Upwork</h3>
<h5 class="review-job">Phillip Alexander, USA</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
"Ossama is a great designer, very humble and dedicated to work.
He is always willing to learn new skills, new tools and new methods,
so he is able to adapt the requirements of new jobs that we gave him.
If you need a designer with this level of versatility and skills, great
competence and responsibility, so you can succeed in your designing projects
you can safely bring Ossama onboard your projects and be successful together
with him."
</p>
<div class="review-info">
<h3 class="review-name">Alphasofthub</h3>
<h5 class="review-job">Hiring Director, PK</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
Ossama Mehmood is a very friendly professional person and creative-minded who wants as
many details as possible in order to deliver the right product. I found my experiences
with Ossama to be entertainment and excited rather than work. He is a brilliant graphic
designer and his creativity goes well beyond any boundaries I have seen. All recommendations!!
</p>
<div class="review-info">
<h3 class="review-name">Notion Studio</h3>
<h5 class="review-job">Co-Owner & Art Director, Serbia</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
Ossama is a passionate individual who continues to aspire to be the best in his field.
We have known him for months now, and he's friendly and well-mannered.
And if you're looking for someone to work with the digital creator, you have nothing to lose but everything to gain with Ossama Mehmood.
Because he wants to create an impact to his community and make a difference.
</p>
<div class="review-info">
<h3 class="review-name">Maria Pajuleras</h3>
<h5 class="review-job">Financial Advisor, Philippines</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
"He accomplished fantastic brand-building design for Roboball. Did multiple iterations on the Fly,
Followed instructions carefully. I’ll pursue to come back furthermore momentarily!"
</p>
<div class="review-info">
<h3 class="review-name">Mike McClintock</h3>
<h5 class="review-job">Upwork, USA</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
A good design always needs appreciation, Once again, An amazing Experience the best fit for my project.
He knows very well to value his customers. About his design it speaks itself very well.
I don't have words to explain about it. Hopefully, the future projects always with him : )
</p>
<div class="review-info">
<h3 class="review-name">Branden Northern</h3>
<h5 class="review-job">Fiverr, USA</h5>
</div>
</div>
<div class="swiper-slide review">
<i class="fas fa-quote-left quote"></i>
<div class="rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="review-text">
I'm bluffed by the ease with which you design a logo.
The breathtaking package included everything as describes,
pretty delightful nailed it.
</p>
<div class="review-info">