-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1370 lines (1252 loc) · 64.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="author" content="Trimatrix Lab">
<meta name="description" content="">
<meta name="keywords" content="">
<title>Md.Aminul Islam Fahim</title>
<link rel="icon" href="images/site/fav-icon.png">
<!--APPLE TOUCH ICON-->
<link rel="apple-touch-icon" href="images/site/apple-touch-icon.png">
<!-- GOOGLE FONT -->
<link href='https://fonts.googleapis.com/css?family=Raleway:500' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
<!-- MATERIAL ICON FONT -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- FONT AWESOME -->
<link href="stylesheets/vendors/font-awesome.min.css" rel="stylesheet">
<!-- ANIMATION -->
<link href="stylesheets/vendors/animate.min.css" rel="stylesheet">
<!-- MAGNIFICENT POPUP -->
<link href="stylesheets/vendors/magnific-popup.css" rel="stylesheet">
<!-- SWIPER -->
<link href="stylesheets/vendors/swiper.min.css" rel="stylesheet">
<!-- MATERIALIZE -->
<link href="stylesheets/vendors/materialize.css" rel="stylesheet">
<!-- BOOTSTRAP -->
<link href="stylesheets/vendors/bootstrap.min.css" rel="stylesheet">
<!-- CUSTOM STYLE -->
<link href="stylesheets/style.css" id="switch_style" rel="stylesheet">
<link href="stylesheets/custom.style.css" rel="stylesheet">
<!--TOGGLE-->
<link href="toggle/toggle.css" rel="stylesheet">
</head>
<body>
<!--==========================================
PRE-LOADER
===========================================-->
<div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="box-holder animated bounceInDown">
<span class="load-box"><span class="box-inner"></span></span>
</div>
<!-- NAME & STATUS -->
<div class="text-holder text-center">
<h2 id="Name">Md.Aminul Islam Fahim</h2>
<h6>Full-stack Web Application Developer</h6>
</div>
</div>
</div>
</div>
<!--==========================================
HEADER
===========================================-->
<header id="home">
<nav id="theMenu" class="menu">
<!--MENU-->
<div id="menu-options" class="menu-wrap">
<!--PERSONAL LOGO-->
<div class="logo-flat">
<img alt="profile-image" class="img-responsive" src="./images/profile/profile.jpg" alt="profile"/>
</div>
<br>
<!--OPTIONS-->
<a href="#home"><i class="title-icon fa fa-user"></i>Home</a>
<a href="#about"><i class="title-icon fa fa-dashboard"></i>About</a>
<a href="#education"><i class="title-icon fa fa-graduation-cap"></i>Education</a>
<a href="#skills"><i class="title-icon fa fa-sliders"></i>Skills</a>
<!-- <a href="#experience"><i class="title-icon fa fa-suitcase"></i>Experience</a> -->
<a href="#portfolios"><i class="title-icon fa fa-archive"></i>Portfolios</a>
<a href="#interest"><i class="title-icon fa fa-heart"></i>Interest</a>
<!-- <a href="#testimonials"><i class="title-icon fa fa-users"></i>Testimonials</a> -->
<!-- <a href="#blog"><i class="title-icon fa fa-pencil-square"></i>Blog</a> -->
<a href="#contact"><i class="title-icon fa fa-envelope"></i>Contact</a>
</div>
<!-- MENU BUTTON -->
<div id="menuToggle">
<div class="toggle-normal">
<i class="material-icons top-bar">remove</i>
<i class="material-icons middle-bar">remove</i>
<i class="material-icons bottom-bar">remove</i>
</div>
</div>
</nav>
<!--HEADER BACKGROUND-->
<div class="header-background section"></div>
</header>
<!--==========================================
V-CARD
===========================================-->
<div id="v-card-holder" class="section">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<!-- V-CARD -->
<div id="v-card" class="card">
<!-- PROFILE PICTURE -->
<div id="profile" class="right">
<img alt="profile-image" class="img-responsive" src="./images/profile/profile.jpg" alt="profile"/>
<div class="slant"></div>
<!--EMPTY PLUS BUTTON-->
<!-- <div class="btn-floating btn-large add-btn"><i class="material-icons">add</i></div> -->
<!--VIDEO PLAY BUTTON-->
<!-- <div id="button-holder" class="btn-holder">
<div id="play-btn" class="btn-floating btn-large btn-play">
<i id="icon-play" class="material-icons">play_arrow</i>
</div>
</div> -->
</div>
<!--VIDEO CLOSE BUTTON-->
<div id="close-btn" class="btn-floating icon-close">
<i class="fa fa-close"></i>
</div>
<div class="card-content">
<!-- NAME & STATUS -->
<div class="info-headings">
<h4 class="text-uppercase left">Md.Aminul Islam Fahim</h4>
<h6 class="text-capitalize left">Full-stack Web Application Developer</h6>
</div>
<!-- CONTACT INFO -->
<div class="infos">
<ul class="profile-list">
<li class="clearfix">
<span class="title"><i class="material-icons">email</i></span>
<span class="content">cipfahim1999@gmail.com</span>
</li>
<li class="clearfix">
<span class="title"><i class="material-icons">language</i></span>
<span class="content">www.cipfahim.github.io</span>
</li>
<li class="clearfix">
<span class="title"><i class="material-icons">phone</i></span>
<span class="content">+88 01706577176</span>
</li>
<li class="clearfix">
<span class="title"><i class="material-icons">place</i></span>
<span class="content">Dhaka, Bangladesh</span>
</li>
</ul>
</div>
<!--LINKS-->
<div class="links">
<!-- FACEBOOK-->
<a href="https://www.facebook.com/cip.fahim.me" target="_blank" id="first_one"
class="social btn-floating indigo"><i
class="fa fa-facebook"></i></a>
<!-- TWITTER-->
<a href="https://twitter.com/CipFahim" target="_blank" class="social btn-floating blue"><i
class="fa fa-twitter"></i></a>
<!-- LINKEDIN-->
<a href="https://www.linkedin.com/in/md-aminul-islam-fahim-226651102/" target="_blank" class="social btn-floating blue darken-3"><i
class="fa fa-linkedin"></i></a>
<!-- Instagram-->
<a href="https://www.instagram.com/cip.fahim/" target="_blank" class="social btn-floating orange darken-3"><i
class="fa fa-instagram"></i></a>
</div>
</div>
<!--HTML 5 VIDEO-->
<video id="html-video" class="video" poster="images/poster/poster.jpg" controls>
<source src="videos/b.webm" type="video/webm">
<source src="videos/a.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
</div>
<!--==========================================
ABOUT
===========================================-->
<div id="about" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- DETAILS -->
<div id="about-card" class="card">
<div class="card-content">
<!-- ABOUT PARAGRAPH -->
<p>
My name is Aminul Islam Fahim and I am a full-stack Web Application Developer and Software Developer, currently living in Dhaka, BD. I have a Diploma In Software Engineering form Daffodil Institute of IT (DIIT) and my primary focus and inspiration for my studies is Web Development. I am both driven and self-motivated, and I am constantly experimenting with new technologies and techniques. I am very passionate about Web Development, and strive to better myself as a developer, and the development community as a whole.
</p>
</div>
<!-- BUTTONS -->
<div id="about-btn" class="card-action">
<div class="about-btn">
<!-- DOWNLOAD CV BUTTON -->
<a href="My Resume.docx" download class="btn waves-effect">Download CV</a>
<!-- CONTACT BUTTON -->
<a href="#contact" class="btn waves-effect">Contact Me</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--==========================================
EDUCATION
===========================================-->
<section id="education" class="section">
<div class="container">
<!-- SECTION TITLE -->
<div class="section-title">
<h4 class="text-uppercase text-center"><img src="images/icons/book.png" alt="demo">Education</h4>
</div>
<div id="timeline-education">
<!-- FIRST TIMELINE -->
<div class="timeline-block">
<!-- DOT -->
<div class="timeline-dot"><h6>J</h6></div>
<!-- TIMELINE CONTENT -->
<div class="card timeline-content">
<div class="card-content">
<!-- TIMELINE TITLE -->
<h6 class="timeline-title">JSC</h6>
<!-- TIMELINE TITLE INFO -->
<div class="timeline-info">
<h6>
<small>Haider Ali School And College</small>
</h6>
<h6>
<small>2012</small>
</h6>
</div>
<!-- TIMELINE PARAGRAPH -->
<p>
I completed my JSC from this prestigious institution.
I successful completed all the credits without any fallout and got A grade.
</p>
<!-- BUTTON TRIGGER MODAL -->
<!-- <a href="#" class="modal-dot" data-toggle="modal" data-target="#myModal-1">
<i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</a> -->
</div>
</div>
</div>
<!-- SECOND TIMELINE -->
<div class="timeline-block">
<!-- DOT -->
<div class="timeline-dot"><h6>S</h6></div>
<!-- TIMELINE CONTENT -->
<div class="card timeline-content">
<div class="card-content">
<!-- TIMELINE TITLE -->
<h6 class="timeline-title">SSC</h6>
<!-- TIMELINE TITLE INFO -->
<div class="timeline-info">
<h6>
<small>Shuvadda High School</small>
</h6>
<h6>
<small>2013 - 2014</small>
</h6>
</div>
<!-- TIMELINE PARAGRAPH -->
<p>
I completed my SSC from this prestigious institution.
I successful completed all the credits without any fallout and got A grade.
</p>
</div>
</div>
</div>
<!-- THIRD TIMELINE -->
<div class="timeline-block">
<!-- DOT -->
<div class="timeline-dot"><h6>H</h6></div>
<!-- TIMELINE CONTENT -->
<div class="card timeline-content">
<div class="card-content">
<!-- TIMELINE TITLE -->
<h6 class="timeline-title">HSC</h6>
<!-- TIMELINE TITLE INFO -->
<div class="timeline-info">
<h6>
<small>Dhaka State College</small>
</h6>
<h6>
<small>2015 - 2016</small>
</h6>
</div>
<!-- TIMELINE PARAGRAPH -->
<p>
I completed HSC from this prestigious institution.
I successful completed all the credits without any fallout and got -A.
</p>
</div>
</div>
</div>
<!-- FOURTH TIMELINE -->
<div class="timeline-block">
<!-- DOT -->
<div class="timeline-dot"><i class="fa fa-graduation-cap"></i></div>
<!-- TIMELINE CONTENT -->
<div class="card timeline-content">
<div class="card-content">
<!-- TIMELINE TITLE -->
<h6 class="timeline-title">Diploma In Software Engineering</h6>
<!-- TIMELINE TITLE INFO -->
<div class="timeline-info">
<h6>
<small></small>Daffodil Institute of IT (DIIT)
</h6>
<h6>
<small>2015 - 2016</small>
</h6>
</div>
<!-- TIMELINE PARAGRAPH -->
<p>
I completed this Diploma this prestigious institution.
I successful completed all the credits without any fallout and got A+.
</p>
</div>
</div>
</div>
<!-- FIFTH TIMELINE
<div class="timeline-block">
DOT
<div class="timeline-dot"><h6>U</h6></div>
TIMELINE CONTENT
<div class="card timeline-content">
<div class="card-content">
TIMELINE TITLE
<h6 class="timeline-title">UI/UX Workshop</h6>
TIMELINE TITLE INFO
<div class="timeline-info">
<h6>
<small>IT Next Academy</small>
</h6>
<h6>
<small>Jan 2010 - Mar 2011</small>
</h6>
</div>
TIMELINE PARAGRAPH
<p>
I completed this course from this prestigious institution.
I successful completed all the credits without any fallout and got A grade overall.
</p>
BUTTON TRIGGER MODAL
<a href="#" class="modal-dot" data-toggle="modal" data-target="#myModal-2">
<i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
SIXTH TIMELINE
<div class="timeline-block">
DOT
<div class="timeline-dot"><i class="fa fa-globe"></i></div>
TIMELINE CONTENT
<div class="card timeline-content">
<div class="card-content">
TIMELINE TITLE
<h6 class="timeline-title">Web Development</h6>
TIMELINE TITLE INFO
<div class="timeline-info">
<h6>
<small>Lipro University</small>
</h6>
<h6>
<small>Jan 2011 - Mar 2012</small>
</h6>
</div>
TIMELINE PARAGRAPH
<p>
I completed this course from this prestigious institution.
I successful completed all the credits without any fallout and got A grade overall.
</p>
BUTTON TRIGGER MODAL
<a href="#" class="modal-dot" data-toggle="modal" data-target="#myModal-3">
<i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</a>
</div>
</div>
</div>-->
</div>
</div>
</section>
<!--==========================================
SKILLS
===========================================-->
<section id="skills" class="section">
<div class="container">
<!-- SECTION TITLE -->
<div class="section-title">
<h4 class="text-uppercase text-center"><img src="images/icons/mixer.png" alt="demo">Skills</h4>
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div id="skills-card" class="card">
<div class="card-content">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- FIRST SKILL SECTION -->
<div class="skills-title">
<h6 class="text-center">Professional</h6>
</div>
<!-- FIRST SKILL BAR -->
<!-- FOURTH SKILL BAR -->
<div class="skillbar" data-percent="80%">
<div class="skillbar-title"><span>PHP</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">80%</div>
</div>
<div class="skillbar" data-percent="85%">
<div class="skillbar-title"><span>Laravel</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">85%</div>
</div>
<div class="skillbar" data-percent="40%">
<div class="skillbar-title"><span>WordPress</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">40%</div>
</div>
<div class="skillbar" data-percent="50%">
<div class="skillbar-title"><span>Vue js</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">50%</div>
</div>
<!-- <div class="skillbar" data-percent="50%">
<div class="skillbar-title"><span>React</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">50%</div>
</div> -->
<div class="skillbar" data-percent="50%">
<div class="skillbar-title"><span>Angular </span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">50%</div>
</div>
<!-- <div class="skillbar" data-percent="60%">
<div class="skillbar-title"><span>Node js</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">60%</div>
</div> -->
<!-- <div class="skillbar" data-percent="60%">
<div class="skillbar-title"><span>C#</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">60%</div>
</div>
<div class="skillbar" data-percent="65%">
<div class="skillbar-title"><span>ASP.Net</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">65%</div>
</div>
<div class="skillbar" data-percent="70%">
<div class="skillbar-title"><span>Java</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">70%</div>
</div> -->
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- SECOND SKILL SECTION -->
<div class="skills-title">
<h6 class="text-center">Personal</h6>
</div>
<!-- FIRST SKILL BAR -->
<div class="skillbar" data-percent="80%">
<div class="skillbar-title"><span>Communication</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">80%</div>
</div>
<!-- SECOND SKILL BAR -->
<div class="skillbar" data-percent="60%">
<div class="skillbar-title"><span>Teamwork</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">60%</div>
</div>
<!-- THIRD SKILL BAR -->
<div class="skillbar" data-percent="70%">
<div class="skillbar-title"><span>Creativity</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">70%</div>
</div>
<!-- FOURTH SKILL BAR -->
<div class="skillbar" data-percent="70%">
<div class="skillbar-title"><span>Dedication</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">70%</div>
</div>
<div class="skills-title">
<h6 class="text-center">Databese</h6>
</div>
<div class="skillbar" data-percent="75%">
<div class="skillbar-title"><span>My SQL</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">75%</div>
</div>
<div class="skillbar" data-percent="60%">
<div class="skillbar-title"><span>Oracal</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">60%</div>
</div>
<div class="skillbar" data-percent="70%">
<div class="skillbar-title"><span>SQLite</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">70%</div>
</div>
<div class="skillbar" data-percent="65%">
<div class="skillbar-title"><span>SQL Server</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">65%</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- THIRD SKILL SECTION -->
<div class="skills-title">
<h6 class="text-center">Software</h6>
</div>
<!-- FIRST SKILL BAR -->
<div class="skillbar" data-percent="80%">
<div class="skillbar-title"><span>Visual Studio</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">80%</div>
</div>
<!-- SECOND SKILL BAR -->
<div class="skillbar" data-percent="90%">
<div class="skillbar-title"><span>Visual Studio Code</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">90%</div>
</div>
<!-- THIRD SKILL BAR -->
<div class="skillbar" data-percent="60%">
<div class="skillbar-title"><span>PHP Storm</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">60%</div>
</div>
<!-- FOURTH SKILL BAR -->
<div class="skillbar" data-percent="75%">
<div class="skillbar-title"><span>Netbeans</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">75%</div>
</div>
<div class="skillbar" data-percent="85%">
<div class="skillbar-title"><span>Atom IDE</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">85%</div>
</div>
<div class="skillbar" data-percent="90%">
<div class="skillbar-title"><span>Sublime Text 3</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">90%</div>
</div>
<div class="skills-title">
<h6 class="text-center">Language Skills</h6>
</div>
<div class="skillbar" data-percent="85%">
<div class="skillbar-title"><span>Bengoli</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">85%</div>
</div>
<div class="skillbar" data-percent="65%">
<div class="skillbar-title"><span>English</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">65%</div>
</div>
<div class="skillbar" data-percent="70%">
<div class="skillbar-title"><span>Hindi</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">70%</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================================
EXPERIENCE
===========================================
<section id="experience" class="section">
<div class="container">
SECTION TITLE
<div class="section-title">
<h4 class="text-uppercase text-center"><img src="images/icons/layers.png" alt="demo">Experience</h4>
</div>
<div id="timeline-experience">
FIRST TIMELINE
<div class="timeline-block">
DOT
<div class="timeline-dot"><h6>D</h6></div>
TIMELINE CONTENT
<div class="card timeline-content">
<div class="card-content">
TIMELINE TITLE
<h6 class="timeline-title">Designer</h6>
TIMELINE TITLE INFO
<div class="timeline-info">
<h6>
<small>RulerSoft</small>
</h6>
<h6>
<small>Jan 2010 - Mar 2012</small>
</h6>
</div>
TIMELINE PARAGRAPH
<p>
I started my designing carrier here, spent tow years learning and working
in various designing aspects..
</p>
BUTTON TRIGGER MODAL
<a href="#" class="modal-dot" data-toggle="modal" data-target="#myModal-4">
<i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
SECOND TIMELINE
<div class="timeline-block">
DOT
<div class="timeline-dot"><h6>F</h6></div>
TIMELINE CONTENT
<div class="card timeline-content">
<div class="card-content">
TIMELINE TITLE
<h6 class="timeline-title">Frontend Developer</h6>
TIMELINE TITLE INFO
<div class="timeline-info">
<h6>
<small>Micro IT</small>
</h6>
<h6>
<small>Jan 2012 - Mar 2014</small>
</h6>
</div>
TIMELINE PARAGRAPH
<p>
I started my frontend carrier here, spent tow years learning and working
in various frontend aspects. I worked on about 40+ projects local and online.
</p>
</div>
</div>
</div>
THIRD TIMELINE
<div class="timeline-block">
DOT
<div class="timeline-dot"><h6>U</h6></div>
TIMELINE CONTENT
<div class="card timeline-content">
<div class="card-content">
TIMELINE TITLE
<h6 class="timeline-title">UI/UX Expert</h6>
TIMELINE TITLE INFO
<div class="timeline-info">
<h6>
<small>Libra IT Solutions</small>
</h6>
<h6>
<small>Jan 2014 - Mar 2015</small>
</h6>
</div>
TIMELINE PARAGRAPH
<p>
I started my expertise carrier here, spent tow years learning and working
in various UX/UI aspects. I worked on about 70+ projects local and online.
</p>
</div>
</div>
</div>
FOURTH TIMELINE
<div class="timeline-block">
DOT
<div class="timeline-dot"><h6>S</h6></div>
TIMELINE CONTENT
<div class="card timeline-content">
<div class="card-content">
TIMELINE TITLE
<h6 class="timeline-title">Senior Developer</h6>
TIMELINE TITLE INFO
<div class="timeline-info">
<h6>
<small>WebStyle Technologies</small>
</h6>
<h6>
<small>Jan 2016 - Continue..</small>
</h6>
</div>
TIMELINE PARAGRAPH
<p>
I recently joined here, currently working on various development
aspects. I already worked on about..
</p>
BUTTON TRIGGER MODAL
<a href="#" class="modal-dot" data-toggle="modal" data-target="#myModal-5">
<i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!--==========================================
MODALS
===========================================-->
<section>
<!--MODAL ONE-->
<div class="modal fade" id="myModal-1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel-1">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<!--MODAL HEADER-->
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true"><i class="fa fa-close"></i></span></button>
<h4 class="modal-title" id="myModalLabel-1">GRADUATION AT ASHTON UNI</h4>
<h6>
<small>Jan 2014 - Mar 2015</small>
</h6>
</div>
<!--MODAL BODY-->
<div class="modal-body">
<img class="img-responsive" alt="graduation" src="images/timeline/demo-gra.jpg">
<p>
I have learned a great many things from participating in varsity football.
It has changed my entire outlook on and attitude toward life. Before my
freshman year at [high-school], I was shy, had low self-esteem and turned
away from seemingly impossible challenges. Football has altered all of these
qualities. On the first day of freshman practice, the team warmed up with a
game of touch football. The players were split up and the game began. However,
during the game, I noticed that I didn't run as hard as I could, nor did I try
to evade my defender and get open. The fact of the matter is that I really did
not want to be thrown the ball. I didn't want to be the one at fault if I dropped
the ball and the play didn't succeed. I did not want the responsibility of helping
the team because I was too afraid of making a mistake. That aspect of my character
led the first years of my high school life. All the while, I went to practice.
</p>
</div>
<!--MODAL FOOTER-->
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<!--MODAL TWO-->
<div class="modal fade" id="myModal-2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel-2">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<!--MODAL HEADER-->
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true"><i class="fa fa-close"></i></span></button>
<h4 class="modal-title" id="myModalLabel-2">EDUCATION AT Y</h4>
<h6>
<small>Jan 2014 - Mar 2015</small>
</h6>
</div>
<!--MODAL BODY-->
<div class="modal-body">
<p>
I have learned a great many things from participating in varsity football.
It has changed my entire outlook on and attitude toward life. Before my
freshman year at [high-school], I was shy, had low self-esteem and turned
away from seemingly impossible challenges. Football has altered all of these
qualities. On the first day of freshman practice, the team warmed up with a
game of touch football. The players were split up and the game began. However,
</p>
</div>
<!--MODAL FOOTER-->
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<!--MODAL THREE-->
<div class="modal fade" id="myModal-3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel-3">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<!--MODAL HEADER-->
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true"><i class="fa fa-close"></i></span></button>
<h4 class="modal-title" id="myModalLabel-3">EDUCATION AT Z</h4>
<h6>
<small>Jan 2014 - Mar 2015</small>
</h6>
</div>
<!--MODAL BODY-->
<div class="modal-body">
<img class="img-responsive" alt="graduation" src="images/timeline/demo-gra.jpg">
<p>
I have learned a great many things from participating in varsity football.
It has changed my entire outlook on and attitude toward life. Before my
freshman year at [high-school], I was shy, had low self-esteem and turned
away from seemingly impossible challenges. Football has altered all of these
qualities. On the first day of freshman practice, the team warmed up with a
game of touch football. The players were split up and the game began. However,
</p>
</div>
<!--MODAL FOOTER-->
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<!--MODAL FOUR-->
<div class="modal fade" id="myModal-4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel-4">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<!--MODAL HEADER-->
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true"><i class="fa fa-close"></i></span></button>
<h4 class="modal-title" id="myModalLabel-4">EXPERIENCE AT Z</h4>
<h6>
<small>Jan 2014 - Mar 2015</small>
</h6>
</div>
<!--MODAL BODY-->
<div class="modal-body">
<p>
I have learned a great many things from participating in varsity football.
It has changed my entire outlook on and attitude toward life. Before my
freshman year at [high-school], I was shy, had low self-esteem and turned
away from seemingly impossible challenges. Football has altered all of these
qualities. On the first day of freshman practice, the team warmed up with a
game of touch football. The players were split up and the game began. However,
</p>
</div>
<!--MODAL FOOTER-->
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<!--MODAL FIVE-->
<div class="modal fade" id="myModal-5" tabindex="-1" role="dialog" aria-labelledby="myModalLabel-5">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<!--MODAL HEADER-->
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true"><i class="fa fa-close"></i></span></button>
<h4 class="modal-title" id="myModalLabel-5">EXPERIENCE AT M</h4>
<h6>
<small>Jan 2014 - Mar 2015</small>
</h6>
</div>
<!--MODAL BODY-->
<div class="modal-body">
<p>
I have learned a great many things from participating in varsity football.
It has changed my entire outlook on and attitude toward life. Before my
freshman year at [high-school], I was shy, had low self-esteem and turned
away from seemingly impossible challenges. Football has altered all of these
qualities. On the first day of freshman practice, the team warmed up with a
game of touch football. The players were split up and the game began. However,
</p>
</div>
<!--MODAL FOOTER-->
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</section>
<!--==========================================
INTEREST
===========================================-->
<section id="interest" class="section">
<div class="container">
<!-- SECTION TITLE -->
<div class="section-title">
<h4 class="text-uppercase text-center"><img src="images/icons/heart.png" alt="demo">Interest</h4>
</div>
<div id="interest-card" class="card">
<!--INTEREST TEXT-->
<div class="card-content">
<p>
First of all I love Cycling, also love playing games with my buddies. I spend quite a lot of time
in traveling, these keeps me fresh for working environment.
</p>
</div>
<!--INTEREST ICONS-->
<div class="row no-gutters">
<!--INTEREST ICON ONE-->
<!-- <div class="col-md-2 col-sm-4 col-xs-6 box text-center">
<div class="interest-icon">
<i class="fa fa-music"></i>
<span>Music</span>
</div>
</div> -->
<!--INTEREST ICON TWO-->
<div class="col-md-3 col-sm-4 col-xs-6 box text-center">
<div class="interest-icon-even">
<i class="fa fa-gamepad"></i>
<span>Gaming</span>
</div>
</div>
<!--INTEREST ICON THREE-->
<div class="col-md-3 col-sm-4 col-xs-6 box text-center">
<div class="interest-icon">
<i class="fa fa-camera"></i>
<span>Photography</span>
</div>
</div>