-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
1135 lines (1079 loc) · 35.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
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Elate — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Free HTML5 Template by FREEHTML5.CO" />
<meta name="keywords" content="free html5, free template, free bootstrap, html5, css3, mobile first, responsive" />
<meta name="author" content="FREEHTML5.CO" />
<!--
//////////////////////////////////////////////////////
FREE HTML5 TEMPLATE
DESIGNED & DEVELOPED by FREEHTML5.CO
Website: http://freehtml5.co/
Email: [email protected]
Twitter: https://twitter.com/fh5co
Facebook: https://www.facebook.com/fh5co
//////////////////////////////////////////////////////
-->
<!DOCTYPE html>
<html>
<head>
<title>5K & 10K Registration Form</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<style>
/*Preloader Style*/
#overlayer {
width:100%;
height:100%;
position:fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
background:#4a4a4a;
}
.preloader p{
position: absolute;
top: 80%;
left: 50%;
margin-left: -45px;
width: 120px;
height: 90px;
text-align: center;
color: #fff;
font-size: 24px;
z-index: 3;
}
.loader {
display: inline-block;
width: 30px;
height: 30px;
position: absolute;
z-index:3;
border: 4px solid #Fff;
top: 50%;
animation: loader 2s infinite ease;
}
.loader-inner {
vertical-align: top;
display: inline-block;
width: 100%;
background-color: #fff;
animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
@-webkit-keyframes loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
html, body {
min-height: 100%;
}
body, div, form, input, select, textarea, label {
padding: 0;
margin: 0;
outline: none;
font-family: Roboto, Arial, sans-serif;
font-size: 14px;
color: #666;
line-height: 22px;
}
h1 {
position: absolute;
margin: 0;
font-size: 40px;
color: #fff;
z-index: 2;
line-height: 83px;
}
.testbox {
display: flex;
justify-content: center;
align-items: center;
height: inherit;
padding: 20px;
}
form {
width: 100%;
padding: 20px;
border-radius: 6px;
background: #fff;
box-shadow: 0 0 8px #cc7a00;
}
.banner {
position: relative;
height: 300px;
background-image: url("/uploads/media/default/0001/02/234656e7acbca4625305dd37e7344af8eff32383.jpeg");
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.banner::after {
content: "";
background-color: rgba(0, 0, 0, 0.2);
position: absolute;
width: 100%;
height: 100%;
}
input, select, textarea {
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
input {
width: calc(100% - 10px);
padding: 5px;
}
input[type="date"] {
padding: 4px 5px;
}
textarea {
width: calc(100% - 12px);
padding: 5px;
}
.item:hover p, .item:hover i, .question:hover p, .question label:hover, input:hover::placeholder {
color: #cc7a00;
}
.item input:hover, .item select:hover, .item textarea:hover {
border: 1px solid transparent;
box-shadow: 0 0 3px 0 #cc7a00;
color: #cc7a00;
}
.item {
position: relative;
margin: 10px 0;
}
.item span {
color: red;
}
input[type="date"]::-webkit-inner-spin-button {
display: none;
}
.item i, input[type="date"]::-webkit-calendar-picker-indicator {
position: absolute;
font-size: 20px;
color: #cc7a00;
}
.item i {
right: 1%;
top: 30px;
z-index: 1;
}
[type="date"]::-webkit-calendar-picker-indicator {
right: 1%;
z-index: 2;
opacity: 0;
cursor: pointer;
}
input[type=radio], input[type=checkbox] {
display: none;
}
label.radio {
position: relative;
display: inline-block;
margin: 5px 20px 15px 0;
cursor: pointer;
}
.question span {
margin-left: 30px;
}
.question-answer label {
display: block;
}
label.radio:before {
content: "";
position: absolute;
left: 0;
width: 17px;
height: 17px;
border-radius: 50%;
border: 2px solid #ccc;
}
input[type=radio]:checked + label:before, label.radio:hover:before {
border: 2px solid #cc7a00;
}
label.radio:after {
content: "";
position: absolute;
top: 6px;
left: 5px;
width: 8px;
height: 4px;
border: 3px solid #cc7a00;
border-top: none;
border-right: none;
transform: rotate(-45deg);
opacity: 0;
}
input[type=radio]:checked + label:after {
opacity: 1;
}
.btn-block {
margin-top: 10px;
text-align: center;
}
button {
width: 150px;
padding: 10px;
border: none;
border-radius: 5px;
background: #cc7a00;
font-size: 16px;
color: #fff;
cursor: pointer;
}
button:hover {
background: #ff9800;
}
@media (min-width: 568px) {
.name-item, .city-item {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.name-item input, .name-item div {
width: calc(50% - 20px);
}
.name-item div input {
width:97%;}
.name-item div label {
display:block;
padding-bottom:5px;
}
}
</style>
</head>
<body>
<div class="testbox">
<form action="/">
<div class="banner">
<h1>5K & 10K Registration Form</h1>
</div>
<p>Runner Information</p>
<div class="item">
<label for="name">Name<span>*</span></label>
<input id="name" type="text" name="name" required/>
</div>
<div class="item">
<label for="email">Email Address<span>*</span></label>
<input id="email" type="email" name="email" required/>
</div>
<div class="item">
<label for="address">Address<span>*</span></label>
<input id="address" type="address" name="address" required/>
</div>
<div class="item">
<label for="city">City<span>*</span></label>
<input id="city" type="text" name="city" required/>
</div>
<div class="item">
<label for="state">State<span>*</span></label>
<input id="state" type="text" name="state" required/>
</div>
<div class="item">
<label for="zip">Zip<span>*</span></label>
<input id="zip" type="text" name="zip" required/>
</div>
<div class="item">
<label for="phone">Phone<span>*</span></label>
<input id="phone" type="number" name="phone" required/>
</div>
<div class="item">
<label for="bdate">Date of Birth<span>*</span></label>
<input id="bdate" type="date" name="bdate" required/>
<i class="fas fa-calendar-alt"></i>
</div>
<div class="question">
<label>Gender</label>
<div class="question-answer">
<div>
<input type="radio" value="none" id="radio_1" name="gender"/>
<label for="radio_1" class="radio"><span>Male</span></label>
</div>
<div>
<input type="radio" value="none" id="radio_2" name="gender"/>
<label for="radio_2" class="radio"><span>Female</span></label>
</div>
</div>
</div>
<div class="item">
<p>T-Shirt Size</p>
<select>
<option selected value="" disabled selected></option>
<option value="course-type" >Small</option>
<option value="short-courses">Medium</option>
<option value="featured-courses">Large</option>
<option value="undergraduate">Extra Large</option>
</select>
</div>
<div class="question">
<label>Choose Race</label>
<div class="question-answer">
<div>
<input type="radio" value="none" id="radio_3" name="race"/>
<label for="radio_3" class="radio"><span>5k - $25</span></label>
</div>
<div>
<input type="radio" value="none" id="radio_4" name="race"/>
<label for="radio_4" class="radio"><span>10K - $25</span></label>
</div>
</div>
</div>
<div class="btn-block">
<button type="submit" href="/">SUBMIT</button>
</div>
</form>
</div>
</body>
</html>
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet' type='text/css'>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Simple Line Icons -->
<link rel="stylesheet" href="css/simple-line-icons.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!--
Default Theme Style
You can change the style.css (default color purple) to one of these styles
1. pink.css
2. blue.css
3. turquoise.css
4. orange.css
5. lightblue.css
6. brown.css
7. green.css
-->
<link rel="stylesheet" href="css/style.css">
<!-- Styleswitcher ( This style is for demo purposes only, you may delete this anytime. ) -->
<link rel="stylesheet" id="theme-switch" href="css/style.css">
<!-- End demo purposes only -->
<style>
/* For demo purpose only */
/* For Demo Purposes Only ( You can delete this anytime :-) */
#colour-variations {
padding: 10px;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
width: 140px;
position: fixed;
left: 0;
top: 100px;
z-index: 999999;
background: #fff;
/*border-radius: 4px;*/
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
}
#colour-variations.sleep {
margin-left: -140px;
}
#colour-variations h3 {
text-align: center;;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: #777;
margin: 0 0 10px 0;
padding: 0;;
}
#colour-variations ul,
#colour-variations ul li {
padding: 0;
margin: 0;
}
#colour-variations li {
list-style: none;
display: block;
margin-bottom: 5px!important;
float: left;
width: 100%;
}
#colour-variations li a {
width: 100%;
position: relative;
display: block;
overflow: hidden;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: 0.4s;
-o-transition: 0.4s;
transition: 0.4s;
}
#colour-variations li a:hover {
opacity: .9;
}
#colour-variations li a > span {
width: 33.33%;
height: 20px;
float: left;
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
}
.option-toggle {
position: absolute;
right: 0;
top: 0;
margin-top: 5px;
margin-right: -30px;
width: 30px;
height: 30px;
background: #f64662;
text-align: center;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: #fff;
cursor: pointer;
-webkit-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
}
.option-toggle i {
top: 2px;
position: relative;
}
.option-toggle:hover, .option-toggle:focus, .option-toggle:active {
color: #fff;
text-decoration: none;
outline: none;
}
</style>
<!-- End demo purposes only -->
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header role="banner" id="fh5co-header">
<div class="container">
<!-- <div class="row"> -->
<nav class="navbar navbar-default">
<div class="navbar-header">
<!-- Mobile Toggle Menu Button -->
<a href="#" class="js-fh5co-nav-toggle fh5co-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<a class="navbar-brand" href="index.html">Elate</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#" data-nav-section="home"><span>Home</span></a></li>
<li><a href="#" data-nav-section="work"><span>Work</span></a></li>
<li><a href="#" data-nav-section="testimonials"><span>Testimonials</span></a></li>
<li><a href="#" data-nav-section="services"><span>Services</span></a></li>
<li><a href="#" data-nav-section="about"><span>About</span></a></li>
<li><a href="#" data-nav-section="contact"><span>Contact</span></a></li>
</ul>
</div>
</nav>
<!-- </div> -->
</div>
</header>
<section id="fh5co-home" data-section="home" style="background-image: url(images/full_image_2.jpg);" data-stellar-background-ratio="0.5">
<div class="gradient"></div>
<div class="container">
<div class="text-wrap">
<div class="text-inner">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="to-animate">Do something you love.</h1>
<h2 class="to-animate">Another free HTML5 bootstrap template by <a href="http://freehtml5.co/" target="_blank" title="Free HTML5 Bootstrap Templates">FREEHTML5.co</a> released under <a href="http://creativecommons.org/licenses/by/3.0/" target="_blank">Creative Commons 3.0</a></h2>
</div>
</div>
</div>
</div>
</div>
<div class="slant"></div>
</section>
<section id="fh5co-intro">
<div class="container">
<div class="row row-bottom-padded-lg">
<div class="fh5co-block to-animate" style="background-image: url(images/img_7.jpg);">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fh5co-intro-icon icon-bulb"></i>
<h2>Plan</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<p><a href="#" class="btn btn-primary">Get In Touch</a></p>
</div>
</div>
<div class="fh5co-block to-animate" style="background-image: url(images/img_8.jpg);">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fh5co-intro-icon icon-wrench"></i>
<h2>Develop</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<p><a href="#" class="btn btn-primary">Click Me</a></p>
</div>
</div>
<div class="fh5co-block to-animate" style="background-image: url(images/img_10.jpg);">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fh5co-intro-icon icon-rocket"></i>
<h2>Launch</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<p><a href="#" class="btn btn-primary">Why Us?</a></p>
</div>
</div>
</div>
<div class="row watch-video text-center to-animate">
<span>Watch the video</span>
<a href="https://vimeo.com/channels/staffpicks/93951774" class="popup-vimeo btn-video"><i class="icon-play2"></i></a>
</div>
</div>
</section>
<section id="fh5co-work" data-section="work">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">Work</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
</div>
</div>
</div>
</div>
<div class="row row-bottom-padded-sm">
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_1.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_1.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 1</h2>
<span>Branding</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_2.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_2.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_3.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_3.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 3</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_4.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_4.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 4</h2>
<span>UI/UX</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_5.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_5.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 1</h2>
<span>Photography</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_6.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_6.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Illustration</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_7.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_7.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 3</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_8.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_8.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 4</h2>
<span>Sketch</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_1.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_1.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Illustration</span>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center to-animate">
<p>* Demo images from <a href="http://plmd.me/" target="_blank">plmd.me</a></p>
</div>
</div>
</div>
</section>
<section id="fh5co-testimonials" data-section="testimonials">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">Testimonials</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.”</p>
</blockquote>
<div class="author to-animate">
<figure><img src="images/person1.jpg" alt="Person"></figure>
<p>
Jean Doe, CEO <a href="http://freehtml5.co/" target="_blank">FREEHTML5.co</a> <span class="subtext">Creative Director</span>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.”</p>
</blockquote>
<div class="author to-animate">
<figure><img src="images/person2.jpg" alt="Person"></figure>
<p>
John Doe, Senior UI <a href="http://freehtml5.co/" target="_blank">FREEHTML5.co</a> <span class="subtext">Creative Director</span>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. ”</p>
</blockquote>
<div class="author to-animate">
<figure><img src="images/person3.jpg" alt="Person"></figure>
<p>
Chris Nash, Director <a href="http://freehtml5.co/" target="_blank">FREEHTML5.co</a> <span class="subtext">Creative Director</span>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-services" data-section="services">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-left">
<h2 class=" left-border to-animate">Services</h2>
<div class="row">
<div class="col-md-8 subtext to-animate">
<h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-anchor"></i>
<h3>Brand & Strategy</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-layers2"></i>
<h3>Web & Interface</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean</p>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-video2"></i>
<h3>Photo & Video</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>CMS & eCommerce</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean</p>
</div>
</div>
</div>
</section>
<section id="fh5co-about" data-section="about">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">About</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="fh5co-person text-center to-animate">
<figure><img src="images/person1.jpg" alt="Image"></figure>
<h3>Jean Smith</h3>
<span class="fh5co-position">Web Designer</span>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts</p>
<ul class="social social-circle">
<li><a href="#"><i class="icon-twitter"></i></a></li>
<li><a href="#"><i class="icon-facebook"></i></a></li>
<li><a href="#"><i class="icon-dribbble"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="fh5co-person text-center to-animate">
<figure><img src="images/person2.jpg" alt="Image"></figure>
<h3>Rob Smith</h3>
<span class="fh5co-position">Web Developer</span>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts</p>
<ul class="social social-circle">
<li><a href="#"><i class="icon-twitter"></i></a></li>
<li><a href="#"><i class="icon-facebook"></i></a></li>
<li><a href="#"><i class="icon-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="fh5co-person text-center to-animate">
<figure><img src="images/person3.jpg" alt="Image"></figure>
<h3>Larry Ben</h3>
<span class="fh5co-position">Web Designer</span>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts</p>
<ul class="social social-circle">
<li><a href="#"><i class="icon-twitter"></i></a></li>
<li><a href="#"><i class="icon-facebook"></i></a></li>
<li><a href="#"><i class="icon-dribbble"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-counters" style="background-image: url(images/full_image_1.jpg);" data-stellar-background-ratio="0.5">
<div class="fh5co-overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center to-animate">
<h2>Fun Facts</h2>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon icon-briefcase to-animate-2"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="89" data-speed="5000" data-refresh-interval="50">89</span>
<span class="fh5co-counter-label">Finished projects</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon icon-code to-animate-2"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="2343409" data-speed="5000" data-refresh-interval="50">2343409</span>
<span class="fh5co-counter-label">Line of codes</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon icon-cup to-animate-2"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="1302" data-speed="5000" data-refresh-interval="50">1302</span>
<span class="fh5co-counter-label">Cup of coffees</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon icon-people to-animate-2"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="52" data-speed="5000" data-refresh-interval="50">52</span>
<span class="fh5co-counter-label">Happy clients</span>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-contact" data-section="contact">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">Get In Touch</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
</div>
</div>
</div>
</div>
<div class="row row-bottom-padded-md">
<div class="col-md-6 to-animate">
<h3>Contact Info</h3>
<ul class="fh5co-contact-info">
<li class="fh5co-contact-address ">
<i class="icon-home"></i>
5555 Love Paradise 56 New Clity 5655, <br>Excel Tower United Kingdom
</li>
<li><i class="icon-phone"></i> (123) 465-6789</li>
<li><i class="icon-envelope"></i>[email protected]</li>
<li><i class="icon-globe"></i> <a href="http://freehtml5.co/" target="_blank">freehtml5.co</a></li>
</ul>
</div>
<div class="col-md-6 to-animate">
<h3>Contact Form</h3>
<div class="form-group ">
<label for="name" class="sr-only">Name</label>
<input id="name" class="form-control" placeholder="Name" type="text">
</div>
<div class="form-group ">
<label for="email" class="sr-only">Email</label>
<input id="email" class="form-control" placeholder="Email" type="email">
</div>
<div class="form-group ">
<label for="phone" class="sr-only">Phone</label>
<input id="phone" class="form-control" placeholder="Phone" type="text">
</div>