-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1783 lines (1698 loc) · 70 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>
<!-- Basic Page Needs
================================================== -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Paul</title>
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Varela"
rel="stylesheet"
/>
<!-- Favicon
================================================== -->
<link
rel="apple-touch-icon"
sizes="144x144"
href="assets/img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/img/favicon-16x16.png"
/>
<link rel="icon" sizes="16x16" href="assets/img/favicon.ico" />
<link rel="manifest" href="assets/img/manifest.json" />
<link
rel="mask-icon"
href="assets/img/safari-pinned-tab.svg"
color="#5bbad5"
/>
<meta name="theme-color" content="#ffffff" />
<!-- Stylesheets
================================================== -->
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<!-- Font Awesome core CSS -->
<link rel="stylesheet" href="assets/css/font-awesome.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Hero Section, Background Image change in css -->
<div id="top" class="hero background-overlay">
<!-- Name & Description -->
<div class="hero-content">
<h1>I am Paul Driggers</h1>
<p class="hero-job"><span>I'M A CREATIVE SOFTWARE ENGINEER</span></p>
<p class="hero-job-desc">
I STAND ON A SWEET SPOT WHERE DESIGN & CODE INTERSECTS.
</p>
</div>
<!-- /.hero-content -->
<div class="hero-arrow page-scroll home-arrow-down">
<a class="" href="#intro"
><i class="fa fa-angle-double-down" aria-hidden="true"></i
></a>
</div>
<!-- /.hero-arrow -->
</div>
<!-- /.hero -->
<!-- End Hero -->
<!-- Header -->
<header id="masthead" class="site-header">
<nav id="primary-navigation" class="site-navigation" data-spy="affix">
<div class="container">
<div class="navbar-header page-scroll">
<button
type="button"
class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#portfolio-perfect-collapse"
aria-expanded="false"
>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Name -->
<div class="page-scroll site-logo">
<a href="#top">Paul</a>
</div>
</div>
<!-- /.navbar-header -->
<div
class="main-menu collapse navbar-collapse"
id="portfolio-perfect-collapse"
>
<!-- Navigation -->
<ul class="nav navbar-nav navbar-right">
<li class="page-scroll"><a href="#top">Home</a></li>
<li class="page-scroll"><a href="#intro">Intro</a></li>
<li class="page-scroll"><a href="#about">About</a></li>
<li class="page-scroll"><a href="#services">Services</a></li>
<!-- <li class="page-scroll"><a href="#team">Team</a></li> -->
<li class="page-scroll"><a href="#history">History</a></li>
<li class="page-scroll"><a href="#works">Works</a></li>
<li class="page-scroll"><a href="#contact">Contact</a></li>
</ul>
<!-- /.navbar-nav -->
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
<!-- /.primary-navigation -->
</header>
<!-- /#header -->
<!-- End Header -->
<!-- Main content -->
<main id="main" class="site-main">
<!-- Hello section -->
<section class="site-section section-hello" id="intro">
<div class="container">
<h2>HELLO & WORLD</h2>
<p class="section-subtitle"><span>EXPLORE DEVELOPER WORLD</span></p>
<div class="row">
<div class="col-sm-4">
<div class="main-service text-right">
<div class="rectangle">
<i class="fa fa-calendar" aria-hidden="true"></i>
</div>
<!-- /.rectangle -->
<h3>I Meet Deadlines</h3>
<p>
Your deadline is the most important value for me. My job is to
make sure the job is done perfectly before the deadline.
</p>
</div>
<!-- /.main-service -->
<div class="main-service text-right">
<div class="rectangle">
<i class="fa fa-comments" aria-hidden="true"></i>
</div>
<h3>Communication Is Key</h3>
<p>
I am always available to check on your questions and take in
feedback as soon as possibly.
</p>
</div>
<!-- /.main-service -->
</div>
<div class="col-sm-4">
<div class="big-rectangle">
<img src="assets/img/john-logo.png" alt="" />
</div>
<!-- /.big-rectangle -->
</div>
<div class="col-sm-4">
<div class="main-service text-left">
<div class="rectangle">
<i class="fa fa-check" aria-hidden="true"></i>
</div>
<h3>Quality Control</h3>
<p>
I test out everything to make sure that your project is fully
functional, cross–platform compatible and meets your
specifications.
</p>
</div>
<!-- /.main-service -->
<div class="main-service text-left">
<div class="rectangle">
<i class="fa fa-list" aria-hidden="true"></i>
</div>
<!-- /.rectangle -->
<h3>BEST PRACTICE</h3>
<p>
I develop meaningful digital products and experiences that
matter with design thinking and creative craftsmanship.
</p>
</div>
<!-- /.main-service -->
</div>
</div>
</div>
</section>
<!-- /.section-hello -->
<!-- End Hello section -->
<!-- Quote section -->
<section
class="section-background section-quote background-overlay text-center"
>
<div class="container">
<p>
I make my <span>work look good</span> & have experience in the
implement of creative solutions for <span>mobile & web</span>,
with a difference.
</p>
</div>
</section>
<!-- /.section-quote -->
<!-- End Quote section -->
<!-- About section -->
<section class="site-section section-about text-center" id="about">
<div class="container">
<h2>ABOUT Paul WORK</h2>
<p class="section-subtitle">
<span>My goal is to build valuable products</span>
</p>
<div class="row">
<div class="col-sm-4 col-xs-6">
<div class="feature-about">
<div class="medium-rectangle rectangle">
<i class="fa fa-mobile" aria-hidden="true"></i>
</div>
<!-- /.rectangle -->
<h3>Mobile development</h3>
<p>
My approach to mobile development is to create an app that
strengthens your company’s brand while ensuring ease of use
and simplicity for your audience
</p>
</div>
<!-- /.feature-about -->
</div>
<div class="col-sm-4 col-xs-6">
<div class="feature-about">
<div class="medium-rectangle rectangle">
<i class="fa fa-laptop" aria-hidden="true"></i>
</div>
<!-- /.rectangle -->
<h3>Web development</h3>
<p>
The web development process involves taking the graphical
elements defined in the design process and coding them into a
custom theme.
</p>
</div>
<!-- /.feature-about -->
</div>
<div class="col-sm-4 col-xs-6">
<div class="feature-about">
<div class="medium-rectangle rectangle">
<i class="fa fa-code" aria-hidden="true"></i>
</div>
<!-- /.rectangle -->
<h3>Dev consulting</h3>
<p>
Go farther than you thought you could. With me you can go
farther then ever before. Get better approach.
</p>
</div>
<!-- /.feature-about -->
</div>
</div>
</div>
</section>
<!-- /.section-about -->
<!-- End About section -->
<!-- Skills section -->
<section class="site-section section-skills">
<div class="container">
<div class="row">
<h2>SKILL LEVEL</h2>
</div>
<div class="row">
<!-- <div class="col-sm-6">
<h2>Introduction video</h2>
<iframe src="https://player.vimeo.com/video/158928871" width="100%" height="280" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div> -->
<div class="col-sm-6">
<div class="progress-group">
<p>React Native</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="100"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>Ionic</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="100"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>Javascript/Typescript</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="95"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>React</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="90"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>Angular</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="90"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>AWS/Firebase</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="70"
></div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="progress-group">
<p>Java/Kotlin</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="90"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>Swift/Objective-C</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="90"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>Cordova/Capacitor</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="95"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>Nodejs</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="80"
></div>
</div>
<!-- /.progress -->
</div>
<!-- /.progress-group -->
<div class="progress-group">
<p>PHP/HTML</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="90"
></div>
</div>
</div>
<div class="progress-group">
<p>Database Development</p>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
data-transitiongoal="70"
></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /.section-skills -->
<!-- End Skills section -->
<!-- Counters section -->
<!-- <section class="site-section section-counters text-center">
<div class="container">
<div class="row">
<div class="col-sm-2 col-xs-6 col-sm-offset-1">
<div class="counter">
<div class="rectangle medium-rectangle ">
<i class="fa fa-rocket" aria-hidden="true"></i>
<span class="counter-start" data-to="167" data-speed="2000">167</span>
</div>
<p>Projects Launched</p>
</div>
</div>
<div class="col-sm-2 col-xs-6">
<div class="counter">
<div class="rectangle medium-rectangle ">
<i class="fa fa-trophy" aria-hidden="true"></i>
<span class="counter-start" data-to="25" data-speed="2000">25</span>
</div>
<p>Awards won</p>
</div>
</div>
<div class="col-sm-2 col-xs-6">
<div class="counter">
<div class="rectangle medium-rectangle ">
<i class="fa fa-paper-plane" aria-hidden="true"></i>
<span class="counter-start" data-to="98" data-speed="2000">98</span>
</div>
<p>Proposals Sent</p>
</div>
</div>
<div class="col-sm-2 col-xs-6">
<div class="counter">
<div class="rectangle medium-rectangle ">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<span class="counter-start" data-to="945" data-speed="2000">945</span>
</div>
<p>Hours of work</p>
</div>
</div>
<div class="col-sm-2 col-xs-12">
<div class="counter">
<div class="rectangle medium-rectangle ">
<i class="fa fa-coffee" aria-hidden="true"></i>
<span class="counter-start" data-to="256" data-speed="2000">256</span>
</div>
<p>Cups of coffee</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Counters section -->
<!-- Services section -->
<section class="site-section section-services" id="services">
<div class="container-fluid">
<h2>MY SERVICES</h2>
<p class="section-subtitle">
<span>Exceptional level of service</span>
</p>
</div>
<div class="container">
<div class="carousel slide" id="services-carousel">
<div class="item-controls text-center">
<a
href="#services-carousel"
class="left btn carousel-control"
data-slide="prev"
><i class="fa fa-angle-left" aria-hidden="true"></i>
</a>
<a
href="#services-carousel"
class="right btn carousel-control"
data-slide="next"
><i class="fa fa-angle-right" aria-hidden="true"></i>
</a>
</div>
<div class="carousel-indicators nav-tabs text-center">
<a
data-target="#services-carousel"
href="#"
data-slide-to="0"
class="active"
>
<div class="col-xs-4 col-sm-third">
<div class="service">
<div class="rectangle">
<i class="fa fa-mobile" aria-hidden="true"></i>
</div>
<p class="hidden-xs">Mobile Development</p>
</div>
</div>
</a>
<a data-target="#services-carousel" href="#" data-slide-to="1">
<div class="col-xs-4 col-sm-third">
<div class="service">
<div class="rectangle">
<i class="fa fa-laptop" aria-hidden="true"></i>
</div>
<p class="hidden-xs">Web development</p>
</div>
</div>
</a>
<a data-target="#services-carousel" href="#" data-slide-to="2">
<div class="col-xs-4 col-sm-third">
<div class="service">
<div class="rectangle">
<i class="fa fa-code" aria-hidden="true"></i>
</div>
<p class="hidden-xs">Dev consulting</p>
</div>
</div>
</a>
</div>
<div class="carousel-inner">
<div id="item1" class="item tab-pane active">
<div class="row">
<div class="col-md-5">
<div class="service-info">
<h3 class="service-title">Mobile Development</h3>
<p>
With an increasing importance being given to
cross-platform solutions, it has become immensely
important to focus on React Native and Ionic as the
mobile app development languages. Their usage range has
been expanding along with Flutter and Xamarin. I could
settle in RN & Ionic rapidly as I choose JavaScript for
the Cross-Platform base language. Strong native app
development experience enables me to develop more
sophisticated and higher performance mobile apps using
them. RN & Ionic support teams are currently working to
advance their technology, so today, many cross-platform
apps performance can compete to native mobile apps.
</p>
</div>
</div>
<div class="col-md-7">
<img
src="assets/img/mobile-development.jpg"
class="img-responsive"
alt=""
/>
</div>
</div>
</div>
<div id="item2" class="item tab-pane">
<div class="row">
<div class="col-md-5">
<div class="service-info">
<h3 class="service-title">Web Development</h3>
<p>
Modern JavaScript frameworks have given me many
opportunities to develop web apps. By using React and
Angular for the web front end development, I could learn
fundamental principle of web and its technologies - JS
frameworks, Rest APIs, DB. I developed some PWAs with
React and Angular, and they could be combined with
Capacitor or Cordova, so sometimes I could use one
codebase for web and mobile apps.
</p>
<p>
I am proficient to use React and Angular for the web
front end development.
</p>
</div>
</div>
<div class="col-md-7">
<img
src="assets/img/web-development.jpg"
class="img-responsive"
alt=""
/>
</div>
</div>
</div>
<div id="item3" class="item tab-pane">
<div class="row">
<div class="col-md-5">
<div class="service-info">
<h3 class="service-title">Dev Consulting</h3>
<!-- <p>Decorations don’t drive home messages. Content does. Reducing text-based content to a visual design element (the shape of the text) can result in bloated and unrealistic client expectations once real data replaces the dummy content. We allow our design decisions to be dictated by the on-page content and messaging, and often our designers use the actual content to inspire interesting elements that might not have been conceived without it</p> -->
<p>
Is there a better way? How can we combine services and
solutions in the product? Only experienced developers
can give you a good answer. Once we have a new
requirement, the next step is to find a solution. I
recommend good solutions to develop mobile and web apps
in specific areas.
</p>
</div>
</div>
<div class="col-md-7">
<img
src="assets/img/web-design.jpg"
class="img-responsive"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="site-section section-reviews text-center">
<div class="container">
<h2>Client Reviews</h2>
<p class="section-subtitle"><span>OUR CLIENTS LOVE US! READ WHAT THEY HAVE TO SAY</span></p>
</div>
<div class="blue-bg">
<div class="container">
<div class="review-carousel">
<div class="review">
<div class="rectangle">
<img src="assets/img/review.jpg" class="img-res" alt="">
</div>
<p>If there were 100 star rating I would leave 110. I have been building WP sites now full time for 7 years and in business for 12 and have never worked with such a solid company with such a wonderful set of themes.</p>
<div class="review-author">
<h3>Mike Taylor</h3>
<p>CEO at Sports Portal</p>
</div>
</div>
<div class="review">
<div class="rectangle">
<img src="assets/img/review-2.jpg" class="img-res" alt="">
</div>
<p>Diana Johnson is a rare SEO consultant who does things the right way. I’ve been consistently impressed with her process, organization and strategic method of doing SEO the right way.</p>
<div class="review-author">
<h3>Anna Murray</h3>
<p>CEO at Law firm</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="site-section section-team" id="team">
<div class="container">
<h2>MEET MY TEAM</h2>
<p class="section-subtitle"><span>This is the team that is working with me</span></p>
<div class="team">
<div class="row">
<div class="col-md-3 col-xs-6">
<div class="team-member">
<div class="flipper">
<div class="team-member-front">
<div class="team-member-thumb">
<img src="assets/img/employee-1.jpg" class="img-res" alt="">
</div>
<p class="team-member-front-name">DIANA JOHNSON</p>
</div>
<div class="team-member-back">
<div class="team-member-info">
<h3 class="team-member-back-name">DIANA JOHNSON</h3>
<p class="team-member-back-position">Web Designer</p>
<p class="team-member-back-info">Curabitur nulla odio bibendum sit amet facilisis sed lobortis id, just Donec ollic itudin facil isis nulla. Donec eget ligula. </p>
<div class="social-icons small">
<a href="#" class="rectangle"><i class="fa fa-facebook"></i></a>
<a href="#" class="rectangle"><i class="fa fa-twitter"></i></a>
<a href="#" class="rectangle"><i class="fa fa-linkedin"></i></a>
<a href="#" class="rectangle"><i class="fa fa-dribbble"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="team-member">
<div class="flipper">
<div class="team-member-front">
<div class="team-member-thumb">
<img src="assets/img/employee-2.jpg" class="img-res" alt="">
</div>
<p class="team-member-front-name">ADAM HENRY</p>
</div>
<div class="team-member-back">
<div class="team-member-info">
<h3 class="team-member-back-name">ADAM HENRY</h3>
<p class="team-member-back-position">Web Developer</p>
<p class="team-member-back-info">Curabitur nulla odio bibendum sit amet facilisis sed lobortis id, just Donec ollic itudin facil isis nulla. Donec eget ligula. </p>
<div class="social-icons small">
<a href="#" class="rectangle"><i class="fa fa-facebook"></i></a>
<a href="#" class="rectangle"><i class="fa fa-twitter"></i></a>
<a href="#" class="rectangle"><i class="fa fa-linkedin"></i></a>
<a href="#" class="rectangle"><i class="fa fa-dribbble"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="team-member">
<div class="flipper">
<div class="team-member-front">
<div class="team-member-thumb">
<img src="assets/img/employee-3.jpg" class="img-res" alt="">
</div>
<p class="team-member-front-name">ROBERT DOE</p>
</div>
<div class="team-member-back">
<div class="team-member-info">
<h3 class="team-member-back-name">ROBERT DOE</h3>
<p class="team-member-back-position">Mobile APP Developer</p>
<p class="team-member-back-info">Curabitur nulla odio bibendum sit amet facilisis sed lobortis id, just Donec ollic itudin facil isis nulla. Donec eget ligula. </p>
<div class="social-icons small">
<a href="#" class="rectangle"><i class="fa fa-facebook"></i></a>
<a href="#" class="rectangle"><i class="fa fa-twitter"></i></a>
<a href="#" class="rectangle"><i class="fa fa-linkedin"></i></a>
<a href="#" class="rectangle"><i class="fa fa-dribbble"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="team-member">
<div class="flipper">
<div class="team-member-front">
<div class="team-member-thumb">
<img src="assets/img/employee-4.jpg" class="img-res" alt="">
</div>
<p class="team-member-front-name">JULIA BROWN</p>
</div>
<div class="team-member-back">
<div class="team-member-info">
<h3 class="team-member-back-name">JULIA BROWN</h3>
<p class="team-member-back-position">Seo Specialist</p>
<p class="team-member-back-info">Curabitur nulla odio bibendum sit amet facilisis sed lobortis id, just Donec ollic itudin facil isis nulla. Donec eget ligula. </p>
<div class="social-icons small">
<a href="#" class="rectangle"><i class="fa fa-facebook"></i></a>
<a href="#" class="rectangle"><i class="fa fa-twitter"></i></a>
<a href="#" class="rectangle"><i class="fa fa-linkedin"></i></a>
<a href="#" class="rectangle"><i class="fa fa-dribbble"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- History section -->
<section class="section-history" id="history">
<div class="container">
<div class="text-center section-diff-title">
<h2>A Look Back At My History</h2>
<p>This my Education and Experience</p>
</div>
<!-- Timeline -->
<ul class="timeline">
<!-- Timeline badge -->
<li class="timeline-start">
<div class="rectangle"><span>2013</span></div>
</li>
<!-- /.timeline-start -->
<!-- Timeline job & description -->
<li>
<div class="rectangle timeline-rectangle"></div>
<div class="timeline-panel">
<div class="timeline-heading">
<div class="timeline-date">
<p>13 Oct</p>
</div>
<!-- /.timeline-date -->
<div class="timeline-position">
<p>Freelance Software Engineer</p>
</div>
<!-- /.timeline-position -->
</div>
<!-- /.timeline-heading -->
<div class="timeline-body">
<div class="timeline-body-thumb">
<img
src="assets/img/timeline-img.jpg"
class="img-res"
alt=""
/>
</div>
<!-- /.timeline-body-thumb -->
<p>
React & Angular Web app development, Javascript frameworks
usage.
</p>
</div>
<!-- /.timeline-body -->
</div>
<!-- /.timeline-panel -->
</li>
<!-- Timeline badge -->
<li class="timeline-start">
<div class="rectangle"><span>2015</span></div>
</li>
<!-- /.timeline-start -->
<!-- Timeline job & description, inverted -->
<li class="timeline-inverted">
<div class="rectangle timeline-rectangle"></div>
<div class="timeline-panel">
<div class="timeline-heading">
<div class="timeline-position">
<p>1st Phorm International LLC</p>
</div>
<!-- /.timeline-position -->
<div class="timeline-date">
<p>5 Jan</p>
</div>
<!-- /.timeline-date -->
</div>
<!-- /.timeline-heading -->
<div class="timeline-body">
<div class="timeline-body-thumb">
<img
src="assets/img/timeline-img.jpg"
class="img-res"
alt=""
/>
</div>
<!-- /.timeline-body-thumb -->
<p>Ionic & Angular mobile app development.</p>
</div>
<!-- /.timeline-body -->
</div>
<!-- /.timeline-panel -->
</li>
<!-- /.timeline-inverted -->
<!-- Timeline job & description -->
<li>
<div class="rectangle timeline-rectangle"></div>
<div class="timeline-panel">
<div class="timeline-heading">
<div class="timeline-date">
<p>25 May</p>
</div>
<!-- /.timeline-date -->
<div class="timeline-position">
<p>DA systems</p>
</div>
<!-- /.timeline-position -->
</div>
<!-- /.timeline-heading -->
<div class="timeline-body">
<div class="timeline-body-thumb">
<img
src="assets/img/timeline-img.jpg"
class="img-res"
alt=""
/>
</div>
<!-- /.timeline-body-thumb -->
<p>
Java/Objective-C/Swift mobile app development, React Native
mobile app develpment.
</p>
</div>
<!-- /.timeline-body -->
</div>
<!-- /.timeline-panel -->
</li>
<li class="timeline-start">
<div class="rectangle"><span>2016</span></div>
</li>
<li class="timeline-start">
<div class="rectangle"><span>2017</span></div>
</li>
<li class="timeline-inverted">
<div class="rectangle timeline-rectangle"></div>
<div class="timeline-panel">
<div class="timeline-heading">
<div class="timeline-date">
<p>3 May</p>
</div>
<!-- /.timeline-date -->
<div class="timeline-position">
<p>Taxicaller</p>
</div>
<!-- /.timeline-position -->
</div>
<!-- /.timeline-heading -->
<div class="timeline-body">
<div class="timeline-body-thumb">
<img
src="assets/img/timeline-img.jpg"
class="img-res"
alt=""
/>
</div>
<!-- /.timeline-body-thumb -->
<p>
Android/iOS mobile app development using Native and React
Native skillset. React Web app development.
</p>
</div>
<!-- /.timeline-body -->
</div>
<!-- /.timeline-panel -->
</li>
<li class="timeline-start">
<div class="rectangle"><span>2018</span></div>
</li>
<li class="timeline-start">
<div class="rectangle"><span>2019</span></div>
</li>
<li>
<div class="rectangle timeline-rectangle"></div>
<div class="timeline-panel">
<div class="timeline-heading">
<div class="timeline-date">
<p>20 April</p>
</div>
<!-- /.timeline-date -->
<div class="timeline-position">
<p>BirdieFire LLC</p>
</div>
<!-- /.timeline-position -->
</div>
<!-- /.timeline-heading -->
<div class="timeline-body">