-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusiness.html
1256 lines (849 loc) · 40.6 KB
/
business.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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Daniel Tait | Web Solutions</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
#logo {
margin-top: -10px;
margin-left: 30px;
}
.center {
text-align: center;
}
.left {
text-align: left;
}
#topContainer {
background-image:url("img/background2.jpg");
background-size: cover;
width: 100%;
margin-top: 50px;
color: #F8F8FF;
}
.padding {
padding: 20px;
}
.icon {
font-size:350%;
}
.title {
font-size: 400%;
}
.subTitle {
font-size: 300%;
}
.backgroundBox {
border: 2px solid #F8F8FF;
border-style: inset;
background-color: rgba(0,0,0,0.6);
margin: 0px;
}
.backgroundBox a {
color: inherit;
text-decoration: none;
}
.landingLinks {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.info {
padding: 0px 30px 0px 30px;
height: 290px;
}
#websiteDevelopment {
width: 100%;
background-color: #EDEDED;
color: gray;
}
#websiteHosting {
width: 100%;
background-color: #E8E8E8;
color: gray;
}
#websiteMaintenance {
width: 100%;
background-color: #EDEDED;
color: gray;
}
#portfolio {
width: 100%;
background-color: #E8E8E8;
color: gray;
}
#devImg {
border: 2px solid #464646;
}
.price {
font-weight: bold;
font-size: 130%;
color: #32CD32;
}
.paddingBottomLP {
padding-bottom: 100px;
}
.paddingBottom {
padding-bottom: 50px;
}
.paddingTop {
padding-top: 40px;
}
p {
font-size: 1.2em;
}
.cta {
position: relative;
bottom: 0px;
}
</style>
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="60">
<!-- Navbar -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="http://www.danieltait.com.au" class="navbar-brand"><img src="img/dtLogo.png" id="logo"></a>
<br />
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#home">Home</a></li>
<li><a href="#websiteDevelopment">Website Development</a></li>
<li><a href="#websiteHosting">Website Hosting</a></li>
<li><a href="#websiteMaintenance">Website Maintenance</a></li>
<li><a href="#portfolio">Portfolio</a>
</ul>
</div>
</div>
</div>
<!-- landing page -->
<div class="container contentContainer" id="topContainer">
<div class="center paddingTop" id="home">
<div class= "row paddingBottomLP">
<div class="col-md-6 col-md-offset-3">
<h1 class="title ">Get your business online today!</h1>
</div>
</div>
</div>
<div class="center paddingBottomLP">
<button type="submit" class="btn btn-success btn-lg subTitle" id="landingContact" data-toggle="modal" data-target="#landingModal">Enquire now!</button>
</div>
<div class="row">
<div class="col-md-4 center padding ">
<div class="backgroundBox padding">
<a href="#websiteDevelopment"<span class="glyphicon glyphicon-phone icon"></span></a>
<a href="#websiteDevelopment" class="landingLinks"><h4>Web Development</h4></a>
<p>Whether you want a simple brochure style website or something more complicated,
such as an e-commerce site or an online community, I can provide
you with a responsive web solution.</p>
</div>
</div>
<div class="col-md-4 center padding">
<div class="backgroundBox padding">
<a href="#websiteHosting"><span class="glyphicon glyphicon-hdd icon"></span></a>
<a href="#websiteHosting" class="landingLinks"><h4>Hosting Services</h4></a>
<p>Need affordable hosting for your new website? I offer a variety of web
hosting plans, whether you are running a busy e-commerce site or just advertising
your business, you're sure to find a plan to suit your needs.</p>
</div>
</div>
<div class="col-md-4 center padding">
<div class="backgroundBox padding">
<a href="#websiteMaintenance"><span class="glyphicon glyphicon-wrench icon"></span></a>
<a href="#websiteMaintenance" class="landingLinks"><h4>Website Maintenance</h4></a>
<p>Too busy to deal with the maintenance of your website? Let me handle it for you.
From simple back-ups to more comprehensive maintenance, I can help keep your website updated and functional.</p>
</div>
</div>
</div>
</div>
<!-- Landing Page Modal -->
<div class="modal fade" id="landingModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<div class="dropdown" style="width:400px";>
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="selectService">Select a service...
<span class="caret"></span></button>
<ul class="dropdown-menu" >
<li class="active"><a href="#">Basic brochure-style website</a></li>
<li><a href="#">e-Commerce website</a></li>
<li><a href="#">Online service or community website</a></li>
<li><a href="#">Basic hosting package</a></li>
<li><a href="#">Business hosting package</a></li>
<li><a href="#">Professional hosting package</a></li>
<li><a href="#">Basic maintenance package</a></li>
<li><a href="#">Standard maintenance package</a></li>
<li><a href="#">Professional maintenance package</a></li>
</ul>
</div>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" id="ssModalType" value="">
<label for="wdbClientName">Name</label>
<br />
<input type="text" id="wdbClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="wdbClientBusiness">Business name</label>
<br />
<input type="text" id="wdbClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="wdbClientPhone">Phone number</label>
<br />
<input type="tel" id="wdbClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="wdbClientEmailLabel">Email</label>
<br />
<input type="email" id="wdbClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="wdbClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="wdbClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<!-- Web Dev section -->
<div class="container contentContainer center padding" id="websiteDevelopment">
<div class="row paddingTop">
<div class="col-md-6 col-md-offset-3">
<h3 class="title">Website Development</h3>
<br />
<img src="img/webDevSmall.jpg" id="devImg" />
<br />
<br />
<p>We live in the digital age!
<a href="http://www.abs.gov.au/ausstats/[email protected]/Lookup/8146.0Chapter12012-13" target=_blank>83% of Australian households</a>
are connected to the internet and
<a href="http://www.abs.gov.au/ausstats/[email protected]/Lookup/8146.0Chapter12012-13" target=_blank>81% of those households are browsing the web daily.</a>
In addition to this,
<a href="http://www.acma.gov.au/theACMA/Library/Corporate-library/Corporate-publications/australia-mobile-digital-economy" target=_blank>over 11 million Australians own a smartphone.</a>
With so many people connected via desktops, tablets and phones, business must get online to increase their customer base and visibility.
Help your customers find you, your services and your products today with a new responsive business website!</p>
<br />
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-duplicate icon" style="color:gray;"></span>
<h3>Basic brochure-style</h3>
<p>A simple single or multipage site providing information about your business, your products and/or services and your contact information.</p>
</div>
<div class="cta paddingBottom">
<p class="price">From: $200</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#brochureModal">Contact me!</button>
</div>
</div>
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-usd icon" style="color:green;"></span>
<h3>e-Commerce</h3>
<p>Same as the basic brochure site but offering the functionality of an online shop to expand the market for you products!</p>
</div>
<div class ="cta paddingBottom">
<p class="price">From: $800</p>
<button class="btn btn-lg btn-danger" id="ecommerceContact" data-toggle="modal" data-target="#ecommerceModal">Contact me!</button>
</div>
</div>
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-globe icon" style="color:blue;"></span>
<h3>Online service or community</h3>
<p>Got your own idea for a cool new service or the next Facebook? Let us help you put it into action!</p>
</div>
<div class="cta paddingBottom">
<p class="price">P.O.A.</p>
<button class="btn btn-lg btn-danger" id="serviceContact" data-toggle="modal" data-target="#serviceModal">Contact me!</button>
</div>
</div>
</div>
<br />
<br />
</div>
</div>
<!-- modals for web dev section -->
<div class="modal fade" id="brochureModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="brochureModalLabel">Basic brochure-style website enquiry</h4>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" value="Brochure-style website">
<label for="wdbClientName">Name</label>
<br />
<input type="text" id="wdbClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="wdbClientBusiness">Business name</label>
<br />
<input type="text" id="wdbClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="wdbClientPhone">Phone number</label>
<br />
<input type="tel" id="wdbClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="wdbClientEmailLabel">Email</label>
<br />
<input type="email" id="wdbClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="wdbClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="wdbClientMessage" name="ClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="ecommerceModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="ecommerceModalLabel">e-Commerce website enquiry</h4>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" value="e-Commerce website">
<label for="wdeClientName">Name</label>
<br />
<input type="text" id="wdeClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="wdeClientBusiness">Business name</label>
<br />
<input type="text" id="wdeClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="wdeClientPhone">Phone number</label>
<br />
<input type="tel" id="wdeClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="wdeClientEmailLabel">Email</label>
<br />
<input type="email" id="wdeClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="wdeClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="wdeClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="serviceModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="serviceModalLabel">Online service or community website enquiry</h4>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" value="Online service or community website">
<label for="wdsClientName">Name</label>
<br />
<input type="text" id="wdsClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="wdsClientBusiness">Business name</label>
<br />
<input type="text" id="wdsClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="wdsClientPhone">Phone number</label>
<br />
<input type="tel" id="wdsClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="wdsClientEmailLabel">Email</label>
<br />
<input type="email" id="wdsClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="wdsClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="wdsClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<!-- Web Hosting section -->
<div class="container contentContainer center padding" id="websiteHosting">
<div class="row paddingTop">
<div class="col-md-6 col-md-offset-3">
<h3 class="title">Website Hosting</h3>
<br />
<img src="img/webHostingSmall.jpg" id="devImg" />
<br />
<br />
<p>Let me take care of all your hosting needs. We have affordable plans to cater for all types of businesses.</p>
<br />
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-duplicate icon"></span>
<h3>Basic</h3>
<ul class="box left">
<li>500 MB of disk space</li>
<li>5 GB per month bandwidth</li>
<li>5 email accounts</li>
</ul>
</div>
<div class="cta paddingBottom">
<p class="price">$5 per month</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#basicHostingModal">Contact me!</button>
</div>
</div>
<div class="col-md-4 hosting">
<div class="info">
<span class="glyphicon glyphicon-briefcase icon" style="color:#A0522D;"></span>
<h3>Business</h3>
<ul class="box left">
<li>1 GB disk space</li>
<li>10 GB per month bandwidth</li>
<li>5 email accounts</li>
</ul>
</div>
<div class="cta paddingBottom">
<p class="price">$8 per month</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#businessHostingModal">Contact me!</button>
</div>
</div>
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-education icon" style="color:black;"></span>
<h3>Professional</h3>
<ul class="box left">
<li>5 GB disk space</li>
<li>20 GB per month bandwidth</li>
<li>20 email accounts</li>
</ul>
</div>
<div class="cta paddingBottom">
<p class="price">$12 per month</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#professionalHostingModal">Contact me!</button>
</div>
</div>
</div>
<br />
<br />
</div>
</div>
<!-- Web Hosting modals -->
<div class="modal fade" id="basicHostingModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="basicHostingLabel">Basic hosting enquiry</h4>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" value="Basic Hosting">
<label for="basicHostingClientName">Name</label>
<br />
<input type="text" id="basicHostingClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="basicHostingClientBusiness">Business name</label>
<br />
<input type="text" id="basicHostingClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="basicHostingClientPhone">Phone number</label>
<br />
<input type="tel" id="basicHostingClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="basicHostingClientEmailLabel">Email</label>
<br />
<input type="email" id="basicHostingClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="basicHostingClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="basicHostingClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="businessHostingModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="businessHostingLabel">Business hosting enquiry</h4>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" value="Business hosting">
<label for="businessHostingClientName">Name</label>
<br />
<input type="text" id="businessHostingClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="businessHostingClientBusiness">Business name</label>
<br />
<input type="text" id="businessHostingClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="businessHostingClientPhone">Phone number</label>
<br />
<input type="tel" id="businessHostingClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="businessHostingClientEmailLabel">Email</label>
<br />
<input type="email" id="businessHostingClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="businessHostingClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="businessHostingClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="professionalHostingModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form method="post" action="thankyou.php">
<div class="modal-header form-group">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="professionalHostingLabel">Professional Hosting enquiry</h4>
</div>
<div class="modal-body form-group" style="text-align:center; align: center;">
<input type="hidden" name="ModalType" value="Professional hosting">
<label for="professionalHostingClientName">Name</label>
<br />
<input type="text" id="professionalHostingClientName" name="ClientName" class="form-control" placeholder="Enter your name." required>
<br />
<label for="professionalHostingClientBusiness">Business name</label>
<br />
<input type="text" id="professionalHostingClientBusiness" name="ClientBusiness" class="form-control" placeholder="Enter your business name.">
<br />
<label for="professionalHostingClientPhone">Phone number</label>
<br />
<input type="tel" id="professionalHostingClientPhone" name="ClientPhone" class="form-control" placeholder="Enter your phone number." maxlength="10">
<br />
<label id="professionalHostingClientEmailLabel">Email</label>
<br />
<input type="email" id="professionalHostingClientEmail" name="ClientEmail" class="form-control" placeholder="Your email address here." required>
<br />
<p class="formfield">
<label for="professionalHostingClientMessageLabel">Your Message</label>
<br />
<textarea class="form-control" id="professionalHostingClientMessage" name="ClientMessage" rows="6" placeholder="Enter a brief description of you business." required></textarea>
</p>
<br />
</div>
<div class="modal-footer form-group">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</div>
</div>
<!-- Web maintenance section -->
<div class="container contentContainer center padding" id="websiteMaintenance">
<div class="row paddingTop">
<div class="col-md-6 col-md-offset-3">
<h3 class="title">Website Maintenance</h3>
<br />
<img src="img/webMaintenanceSmall.jpg" id="devImg" />
<br />
<br />
<p> Regular maintenance is a must for any website. Backups are essential in case of data loss or malicious
activity. Regular updates help keep your website more secure against hackers and bugs. If you’re too busy
to handle this yourself or don’t have the time to learn, check out the packages below and let me handle it
for you. </p>
<br />
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-circle-arrow-up icon" style="color:gray;"></span>
<h4>Basic</h4>
<ul class="box left">
<li>Backup of original website stored on a cloud server</li>
</ul>
<br />
</div>
<div class="cta paddingBottom">
<p class="price">$9 per month</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#basicMaintenanceModal">Contact me!</button>
</div>
</div>
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-circle-arrow-up icon" style="color:green;"></span>
<h4>Standard</h4>
<p>As basic package but also includes:
<ul class="box left">
<li>Updating of any themes or plug-ins</li>
<li>Weekly backup to cloud sever</li>
<li>Spam removal</li>
<li>Website restoration (after data loss or website defacement)</li>
</ul>
<br />
</div>
<div class="cta paddingBottom">
<p class="price">$35 per month</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#standardMaintenanceModal">Contact me!</button>
</div>
</div>
<div class="col-md-4">
<div class="info">
<span class="glyphicon glyphicon-circle-arrow-up icon" style="color:gold;"></span>
<h4>Professional</h4>
<p>As standard package but also includes:
<ul class="box left">
<li>Monthly security check</li>
<li>IP blocking</li>
<li>Monitoring of server uptime/ downtime</li>
<li>Checking and fixing of broken links</li>
<li>Database Optimization</li>
</ul>
<br />
</div>
<div class="cta paddingBottom">
<p class="price">$65 per month</p>
<button class="btn btn-lg btn-danger" id="brochureContact" data-toggle="modal" data-target="#professionalMaintenanceModal">Contact me!</button>
</div>
</div>
</div>
<br />
<br />
</div>
</div>