-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·862 lines (784 loc) · 31.3 KB
/
index.html
File metadata and controls
executable file
·862 lines (784 loc) · 31.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="Bootstrap, Landing page, Template, Business, Service">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="author" content="Grayrids">
<title>HelloIT - We troubleshoot your business</title>
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="img/2.png" type="image/png">
<!-- Testing -->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/LineIcons.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/nivo-lightbox.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-91168237-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-91168237-2');
</script>
</head>
<body>
<!-- Header Section Start -->
<header id="home" class="hero-area">
<div class="overlay">
<span></span>
<span></span>
</div>
<nav class="navbar navbar-expand-md bg-inverse fixed-top scrolling-navbar">
<div class="container">
<a href="index.html" class="navbar-brand"><img src="img/logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="lni-menu"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto w-100 justify-content-end">
<li class="nav-item">
<a class="nav-link page-scroll" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#features">Services</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#showcase">Showcase</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="btn btn-singin" href="tel:+18017091476">Call Us: 801-709-1476</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row space-100">
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="contents">
<h2 class="head-title">We Troubleshoot Your Business</h2>
<p>Need a new website? Marketing? Social media? <br>Don't know what you need? You're in the right place.</p>
<div class="header-button">
<a href="#contact" class="btn btn-border page-scroll">Contact Us</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12 p-0">
<div class="intro-img">
<img src="img/intro-2.jpg" alt="">
</div>
</div>
</div>
</div>
</header>
<!-- Header Section End -->
<!-- Business Plan Section Start -->
<section id="business-plan">
<div class="container">
<div class="row">
<!-- Start Col -->
<div class="col-lg-6 col-md-12 pl-0 pt-70 pr-5">
<div class="business-item-img">
<img src="img/business/vision.jpg" class="img-fluid" alt="">
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-6 col-md-12 pl-4">
<div class="business-item-info">
<h3>We can help you craft your vision.</h3>
<p>We've built everything from ecommerce solutions for multi-million dollar companies to single user blogs. Each business has a story and we want to help you get yours out there.</p>
<a class="btn btn-common" href="#contact">Contact Us</a>
</div>
</div>
<!-- End Col -->
</div>
</div>
</section>
<!-- Business Plan Section End -->
<!-- Cool Fetatures Section Start -->
<section id="features" class="section">
<div class="container">
<!-- Start Row -->
<div class="row">
<div class="col-lg-12">
<div class="features-text section-header text-center">
<div>
<h2 class="section-title">Services We Rock At</h2>
<div class="desc-text">
<p>We have years of experience building internet businesses from scratch. Whether you’re starting fresh or just need some help getting to the next level, we can help.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
<!-- Start Row -->
<div class="row featured-bg">
<!-- Start Col -->
<div class="col-lg-6 col-md-6 col-xs-12 p-0">
<!-- Start Fetatures -->
<div class="feature-item featured-border1">
<div class="feature-icon float-left">
<i class="lni-code"></i>
</div>
<div class="feature-info float-left">
<h4>Website Building</h4>
<p>We’ve built sites using everything from pure html <br> to WordPress. We can build and customize a site <br> on just about any platform.</p>
</div>
</div>
<!-- End Fetatures -->
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-6 col-md-6 col-xs-12 p-0">
<!-- Start Fetatures -->
<div class="feature-item featured-border2">
<div class="feature-icon float-left">
<i class="lni-envelope"></i>
</div>
<div class="feature-info float-left">
<h4>Email Marketing</h4>
<p>We’ve built and marketed to email lists as big <br> as 400,000 people. Salesforce Marketing Cloud,<br> Mailchimp, you name it we can build for it.</p>
</div>
</div>
<!-- End Fetatures -->
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-6 col-md-6 col-xs-12 p-0">
<!-- Start Fetatures -->
<div class="feature-item featured-border1">
<div class="feature-icon float-left">
<i class="lni-seo-monitoring"></i>
</div>
<div class="feature-info float-left">
<h4>SEO</h4>
<p>Producing long lasting organic SEO results for <br> brand of different kinds for more than a decade,<br> we understand that’s your.</p>
</div>
</div>
<!-- End Fetatures -->
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-6 col-md-6 col-xs-12 p-0">
<!-- Start Fetatures -->
<div class="feature-item featured-border2">
<div class="feature-icon float-left">
<i class="lni-facebook-filled"></i>
</div>
<div class="feature-info float-left">
<h4>Social Media</h4>
<p>Facebook, Twitter, Instagram. <br>Are they right for your business? Yes! We can help <br>you build your audience and find your<br> customers where they live.</p>
</div>
</div>
<!-- End Fetatures -->
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-6 col-md-6 col-xs-12 p-0">
<!-- Start Fetatures -->
<div class="feature-item featured-border3">
<div class="feature-icon float-left">
<i class="lni-magnet"></i>
</div>
<div class="feature-info float-left">
<h4>Advertising</h4>
<p>If you build it they won't come.<br> You have to do more than put up <br>a fancy site. You've got to get people there. <br>We can help with that.</p>
</div>
</div>
<!-- End Fetatures -->
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-6 col-md-6 col-xs-12 p-0">
<!-- Start Fetatures -->
<div class="feature-item">
<div class="feature-icon float-left">
<i class="lni-support"></i>
</div>
<div class="feature-info float-left">
<h4>Premier Support</h4>
<p>Get hacked? Lose your IT person?<br> We understand your website is your life <br>and we can get you back up and running ASAP.</p>
</div>
</div>
<!-- End Fetatures -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</section>
<!-- Cool Fetatures Section End -->
<!-- Recent Showcase Section Start -->
<section id="showcase">
<div class="container-fluid right-position">
<!-- Start Row -->
<div class="row gradient-bg">
<div class="col-lg-12">
<div class="showcase-text section-header text-center">
<div>
<h2 class="section-title">Recent Works</h2>
<div class="desc-text">
<p>We've helped a lot of businesses just like yours build out their site and marketing plan.</p>
<p>Here are a few happy customers.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
<!-- Start Row -->
<div class="row justify-content-center showcase-area">
<div class="col-lg-12 col-md-12 col-xs-12 pr-0">
<div class="showcase-slider owl-carousel">
<div class="item">
<div class="screenshot-thumb">
<img src="img/showcase/certmag.jpg" class="img-fluid" alt="" />
<div class="hover-content text-center">
<div class="fancy-table">
<div class="table-cell">
<div class="single-text">
<p>Website, Marketing</p>
<h5>Rebuild CertMag</h5>
</div>
<div class="zoom-icon">
<a class="lightbox" href="img/showcase/certmag.jpg"><i class="lni-zoom-in"></i></a>
<a href="http://certmag.com"><i class="lni-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="screenshot-thumb">
<img src="img/showcase/testoutce.jpg" class="img-fluid" alt="" />
<div class="hover-content text-center">
<div class="fancy-table">
<div class="table-cell">
<div class="single-text">
<p>Website, Marketing</p>
<h5>New Brand</h5>
</div>
<div class="zoom-icon">
<a class="lightbox" href="img/showcase/testoutce.jpg"><i class="lni-zoom-in"></i></a>
<a href="https://testoutce.com"><i class="lni-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="screenshot-thumb">
<img src="img/showcase/gocertify.jpg" class="img-fluid" alt="" />
<div class="hover-content text-center">
<div class="fancy-table">
<div class="table-cell">
<div class="single-text">
<p>Website, Marketing</p>
<h5>Rebuild Gocertify</h5>
</div>
<div class="zoom-icon">
<a class="lightbox" href="img/showcase/gocertify.jpg"><i class="lni-zoom-in"></i></a>
<a href="http://gocertify.com"><i class="lni-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="screenshot-thumb">
<img src="img/showcase/muir.jpg" class="img-fluid" alt="" />
<div class="hover-content text-center">
<div class="fancy-table">
<div class="table-cell">
<div class="single-text">
<p>Website, IT</p>
<h5>IT Consulting</h5>
</div>
<div class="zoom-icon">
<a class="lightbox" href="img/showcase/muir.jpg"><i class="lni-zoom-in"></i></a>
<a href="http://muirgourmet.com"><i class="lni-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="screenshot-thumb">
<img src="img/showcase/ascend.jpg" class="img-fluid" alt="" />
<div class="hover-content text-center">
<div class="fancy-table">
<div class="table-cell">
<div class="single-text">
<p>Ecommerce</p>
<h5>Website, Marketing Plan</h5>
</div>
<div class="zoom-icon">
<a class="lightbox" href="img/showcase/ascend.jpg"><i class="lni-zoom-in"></i></a>
<a href="http://ascendeducation.com"><i class="lni-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="screenshot-thumb">
<img src="img/showcase/alaskaselect.jpg" class="img-fluid" alt="" />
<div class="hover-content text-center">
<div class="fancy-table">
<div class="table-cell">
<div class="single-text">
<p>Website, Migration</p>
<h5>New Site, Custom Plugin</h5>
</div>
<div class="zoom-icon">
<a class="lightbox" href="img/showcase/alaskaselect.jpg"><i class="lni-zoom-in"></i></a>
<a href="#"><i class="lni-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
</div>
</section>
<!-- Recent Showcase Section End -->
<!-- Our Pricing Plan Section Start -->
<section id="pricing" class="section">
<div class="container">
<!-- Start Row -->
<div class="row">
<div class="col-lg-12">
<div class="pricing-text section-header text-center">
<div>
<h2 class="section-title">Pricing</h2>
<div class="desc-text">
<p>We want to help you without breaking the bank.</p>
<p>We deliver high-quality work at an affordable cost.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
<!-- Start Row -->
<div class="row pricing-tables">
<!-- Start Col -->
<div class="col-lg-4 col-md-4 col-xs-12">
<div class="pricing-table text-center">
<div class="pricing-details">
<h3>By the Job</h3>
<h1>$125/hr</h1>
<ul>
<li>Custom Plugins</li>
<li>New Websites</li>
<li>Break/Fix</li>
<li>IT Support</li>
<li>Migrations</li>
</ul>
</div>
<div class="plan-button">
<a href="#contact" class="btn btn-border">Contact Us</a>
</div>
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-4 col-md-4 col-xs-12">
<div class="pricing-table text-center">
<div class="pricing-details">
<h3>Ongoing Support</h3>
<p>Starting At</p>
<h1>$300/mo</h1>
<ul>
<li>Server Support</li>
<li>Security Patches</li>
<li>Monitoring</li>
<li>Desktops/Laptops/Printers</li>
<li>Additional Projects $100/hr</li>
</ul>
</div>
<div class="plan-button">
<a href="#contact" class="btn btn-common">Contact Us</a>
</div>
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-4 col-md-4 col-xs-12">
<div class="pricing-table text-center">
<div class="pricing-details">
<h3>Marketing Roadmap</h3>
<h1>$250</h1>
<p>We'll tell you:</p>
<ul>
<li>Where/when to post.</li>
<li>Which tools to use.</li>
<li>Where to advertise.</li>
<li>What your SEO is missing.</li>
</ul>
</div>
<div class="plan-button">
<a href="#" class="btn btn-border">Contact Us</a>
</div>
</div>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</section>
<!-- Our Pricing Plan Section End -->
<!-- Client Testimoninals Section Start -->
<section id="testimonial" class="section">
<div class="container-fluid right-position">
<!-- Start Row -->
<div class="row gradient-bg">
<div class="col-lg-12">
<div class="showcase-text section-header text-center">
<div>
<h2 class="section-title">Testimonials</h2>
<div class="desc-text">
<p style="color:#fff">Here's what our customers have to say.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
<!-- Start Row -->
<div class="row justify-content-center testimonial-area">
<div class="col-lg-10 col-md-12 col-sm-12 col-xs-12 pr-20 pl-20" style="overflow: hidden;padding-bottom: 60px">
<div id="client-testimonial" class="text-center owl-carousel">
<div class="item">
<div class="testimonial-item">
<div class="content-inner">
<p class="description">Jed is one of those valuable professionals whose job is also their hobby. He consistently brought innovative improvements to GoCertify, many of which we implemented. He is a self-starter and a capable project manager. His willingness to think outside the box combined with a superlative tech savvy approach to day to day challenges helped us move quickly forward as a newly acquired company. Thanks to his efforts, we were able to outpace many better funded and more established competitors. Working with Jed has been a pleasure.</p>
<div class="author-info">
<h5>Rocky Steele ; <span> CEO Ascend Education, Standard Oil</span></h5>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="content-inner">
<p class="description">He’s someone you can trust to get the job done, even in tough situations. I’ve seen him solve complex virus attacks, quickly restore websites that have crashed, and work long into the night to make sure a campaign gets successfully released. Jed has a strong grasp on all the current Tech trends and has provided valuable marketing decisions for our team that have greatly influenced our products success.</p>
<div class="author-info">
<h5>Jordan Jones ; <span> Creative Director GoCertify</span></h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
</div>
</section>
<!-- Client Testimoninals Section End -->
<!-- Team section Start -->
<section id="team" class="section">
<div class="container">
<!-- Start Row -->
<div class="row">
<div class="col-lg-12">
<div class="team-text section-header text-center">
<div>
<h2 class="section-title">Team Members</h2>
<div class="desc-text">
<p>We've built a team of smart, reliable workers who love to solve problems.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
<!-- Start Row -->
<div class="row">
<!-- Start Col -->
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-team">
<div class="team-thumb">
<img src="img/team/jed.jpg" class="img-fluid" alt="">
</div>
<div class="team-details">
<div class="team-social-icons">
<ul class="social-list">
<li><a href="https://linkedin.com/in/jedreisner"><i class="lni-linkedin-original"></i></a></li>
<li><a href="https://twitter.com/jedreisner"><i class="lni-twitter-filled"></i></a></li>
<li><a href="https://github.com/echotech"><i class="lni-github-original"></i></a></li>
</ul>
</div>
<div class="team-inner text-center">
<h5 class="team-title">Jed Reisner</h5>
<p>Founder/CEO</p>
<!-- the dude -->
</div>
</div>
</div>
</div>
<!-- Start Col -->
<!-- Start Col -->
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-team">
<div class="team-thumb">
<img src="img/team/nathan-2.png" class="img-fluid" alt="">
</div>
<div class="team-details">
<div class="team-social-icons">
<ul class="social-list">
<li><a href="https://www.linkedin.com/in/nathanjtelford/ "><i class="lni-linkedin-original"></i></a></li>
<li><a href="https://nathantelford.dev/"><i class="lni-website"></i></a></li>
<li><a href="https://github.com/NathanJTelford"><i class="lni-github-original"></i></a></li>
</ul>
</div>
<div class="team-inner text-center">
<h5 class="team-title">Nathan Telford</h5>
<p>Full-stack Developer</p>
</div>
</div>
</div>
</div>
<!-- Start Col -->
<!-- Start Col -->
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="single-team">
<div class="team-thumb">
<img src="img/team/jonathan-headshot.jpg" class="img-fluid" alt="">
</div>
<div class="team-details">
<div class="team-social-icons">
<ul class="social-list">
<li><a href="https://github.com/Jolt64"><i class="lni-github-original"></i></a></li>
<li><a href="https://www.linkedin.com/in/j-telford-dev/"><i class="lni-linkedin-original"></i></a></li>
<!-- <li><a href="#"><i class="lni-google-plus"></i></a></li> -->
</ul>
</div>
<div class="team-inner text-center">
<h5 class="team-title">Jonathan Telford</h5>
<p>Full-stack Developer</p>
</div>
</div>
</div>
</div>
<!-- Start Col -->
</div>
<!-- End Row -->
</div>
</section>
<!-- Team section End -->
<!-- Contact Us Section -->
<section id="contact" class="section">
<!-- Container Starts -->
<div class="container">
<!-- Start Row -->
<div class="row">
<div class="col-lg-12">
<div class="contact-text section-header text-center">
<div>
<h2 class="section-title">Get In Touch</h2>
<div class="desc-text">
<p>Need a quote? Have a question?</p>
<p>Just need someone to talk to? Fill out the form.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
<!-- Start Row -->
<div class="row">
<!-- Start Col -->
<div class="col-lg-6 col-md-12">
<form id="contactForm"action="https://formspree.io/hello@buttonfortheinter.net" method="POST">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" id="name" name="name" placeholder="Name" required data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" placeholder="Subject" id="msg_subject" class="form-control" name="_subject" required data-error="Please enter your subject">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" id="email" name="_replyto" placeholder="Email" required data-error="Please enter your Email">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" placeholder="Budget" id="budget" class="form-control" name="budget" required data-error="Please enter your Budget">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" id="message" name="message" placeholder="Write Message" rows="4" data-error="Write your message" required></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="form-group" style="display:none;">
<input type="text" name="_gotcha">
</div>
<div class="submit-button">
<button class="btn btn-common" id="submit" type="submit" value="send">Submit</button>
<div id="msgSubmit" class="h3 hidden"></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</form>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-1">
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-4 col-md-12">
<div class="contact-img">
<img src="img/contact/01.png" class="img-fluid" alt="">
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-1">
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</section>
<!-- Contact Us Section End -->
<!-- Footer Section Start -->
<footer>
<!-- Footer Area Start -->
<section id="footer-Content">
<div class="container">
<!-- Start Row -->
<div class="row">
<!-- Start Col -->
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="footer-logo">
<img src="img/footer-logo.png" alt="">
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="block-title">Company</h3>
<ul class="menu">
<li><a href="about-us.html"> - About Us</a></li>
<li><a href="#services"> - Services</a></li>
<li><a href="#showcase"> - Showcase</a></li>
<li><a href="#pricing">- Pricing</a></li>
<li><a href="#team"> - Team</a></li>
<li><a href="#contact"> - Contact</a></li>
</ul>
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="block-title">Product</h3>
<ul class="menu">
<li><a href="#services"> - Services</a></li>
<li><a href="#showcase"> - Showcase</a></li>
<li><a href="#contact"> - Contact</a></li>
</ul>
</div>
</div>
<!-- End Col -->
<!-- Start Col -->
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="block-title">Subscribe Now</h3>
<p>Subscribe for deals, info, and because you need another email in your inbox!</p>
<div class="subscribe-area">
<input type="email" class="form-control" placeholder="Enter Email">
<span><i class="lni-chevron-right"></i></span>
</div>
</div>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- Copyright Start -->
<div class="copyright">
<div class="container">
<!-- Star Row -->
<div class="row">
<div class="col-md-12">
<div class="site-info text-center">
<p>© HelloIT 2019</p>
</div>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
</div>
<!-- Copyright End -->
</section>
<!-- Footer area End -->
</footer>
<!-- Footer Section End -->
<!-- Go To Top Link -->
<a href="#" class="back-to-top">
<i class="lni-chevron-up"></i>
</a>
<!-- Preloader -->
<div id="preloader">
<div class="loader" id="loader-1"></div>
</div>
<!-- End Preloader -->
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="js/jquery-min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/jquery.nav.js"></script>
<script src="js/scrolling-nav.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/nivo-lightbox.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>