-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1159 lines (958 loc) · 42.2 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 class="no-js" lang="en">
<head>
<meta name="google-site-verification" content="soeZ_PEMfcOUPgC2pv8fkPvjJQkSuSPEc7J6nMQQSTA" />
<!--- ====================== basic page needs ====================== -->
<meta charset="utf-8">
<meta name="description" content="A freelancer Python Django Software
developer in Mumbai, India. Website CRM Wordpress development using
Django at cheapest rate. Knowledge on Google cloud platform, Amazon
cloud platform (GCP/AWS)">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Python Developer Freelance software developer in Mumbai</title>
<!-- <link rel="manifest" href="manifest.json"> -->
<!-- ====================== favicons ===================== -->
<link rel="icon" type="image/png" href="favicon.png">
<meta name="author" content="freelancer Python Django Software developer
in Mumbai">
<!-- ================== mobile specific metas =================== -->
<meta name="viewport" content="width=device-width, initial-scale=1,
maximum-scale=1">
<meta name="keywords" content="freelance website developer in mumbai,
website development company mumbai, full stack developer in mumbai,
full stack developer navi mumbai, full stack developer thane, full
stack development service in mumbai, freelancer wordpress mumbai, aws cloud services freelancer mumbai, django
developer fresher mumbai, django developer jobs mumbai, part time
django developers mumbai, python programmers mumbai, freelance
python programmers mumbai, python progammer job in mumbai, website
development company in mumbai, Cloud Consultant in mumbai, best
website developer mumbai, best website programmer mumbai, aws gcp cloud service provider mumbai, top website programmer mumbai, need
website developer in mumbai, website developer">
<link rel="canonical" href="https://www.bhaveshpatel.xyz/">
<meta property="og:title" content="Bhavesh Patel | Web Developer |
Python Developer - Freelance Web developer in Mumbai, India">
<meta property="og:type" content="blog">
<meta property="og:url" content="https://www.bhaveshpatel.xyz/">
<meta property="og:site_name" content="Bhavesh Patel | Web Developer -
Freelance Web developer in Mumbai, India">
<meta property="og:description" content="A freelancer / developer making
website in Mumbai, India., Website development at cheapest rate">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Bhavesh Patel | Web Developer -
Freelance Web developer in Mumbai, India">
<meta name="twitter:description" content="A freelancer / developer
making website in Mumbai, India., Website development at cheapest
rate">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<style type="text/css">
.white {
color: white;
}
.color-888888 {
color: #888888 !important;
}
.margin-bottom-0 {
margin-bottom: 0px;
}
.border-white {
border-color: #FFFFFF !important;
color: #FFFFFF !important;
}
a.border-white:hover {
border-color: #FF0077 !important;
color: #FF0077 !important;
}
.pricing-text {
color: #FF0077;
font-size: 1.6rem;
line-height: 1.875;
margin-bottom: 0.3rem;
text-transform: uppercase;
letter-spacing: .4rem;
}
.hidden {
color: transparent;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
}
</style>
</head>
<body id="top">
<!-- header -->
<header>
<div class="row">
<div class="top-bar">
<a class="menu-toggle" href="#">
<span>Menu</span>
</a>
<div class="logo">
<a href="index.html">Bhavesh Patel</a>
</div>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current">
<a class="smoothscroll" href="#intro" title="Home">Home</a>
</li>
<li>
<a class="smoothscroll" href="#about" title="About">About</a>
</li>
<li>
<a class="smoothscroll" href="#resume" title="Service">Resume</a>
</li>
<li>
<a class="smoothscroll" href="#services" title="Services">Services</a>
</li>
<li>
<a class="smoothscroll" href="#contact" title="Contact">Contact</a>
</li>
</ul>
</nav>
</div>
<!-- /top-bar -->
</div>
<!-- /row -->
</header>
<!-- /header -->
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h5>Hello, World.</h5>
<h1 id="my_name">I</h1>
<p class="intro-position">
<span>Software Developer</span>
<span>Python Developer</span>
<span>Cloud Consultant</span>
</p>
<a class="button stroke smoothscroll" href="#about" title="More About Me">More About Me</a>
</div>
</div>
</div>
<!-- /intro-content -->
<ul class="intro-social">
<li>
<a target="_blank" href="https://www.linkedin.com/in/bhavesh-patel-459035ba/">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/bhaveshpatel640/">
<i class="fa fa-github"></i>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/bhaveshpatel640">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/bhaveshpatel640">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a target="_blank" href="https://www.instagram.com/bhaveshpatel640/">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a target="_blank" href="https://www.youtube.com/c/BhaveshPatel640">
<i class="fa fa-youtube"></i>
</a>
</li>
</ul>
<!-- /intro-social -->
</section>
<!-- /intro -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h5>About</h5>
<h2>Let me introduce myself.</h2>
<div class="intro-info">
<div class="col-four">
<img src="https://i.imgur.com/HKrPl2i.jpg" alt="Profile
Picture" title="Bhavesh Patel | Profile Picture">
<a target="_blank"
href="https://www.credential.net/5b96fbd9-bc97-48fd-910c-3c9314cf35b1?key=7e8b44ad1e90115121e6f49bc577ae03d7bc4475a79a01abb9da10bae82016b3">
<img src="https://imgur.com/zvt7xXB.jpg" alt="Profile
Picture" title="Bhavesh Patel | Profile Picture">
</a>
</div>
<p class="lead">
7+ years of experience as a Software Engineer in the IT product industry. GCP Cloud certified with a specialisation in Backend development.<br><br>
A results-oriented Software Engineer with a track record of delivering acceptable product technology solutions.Platform development, architecture, and agile methodologies are all areas in which you should be well-versed.
</p>
</div>
</div>
</div>
<!-- /section-intro -->
<div class="row about-content">
<div class="col-six tab-full">
<h3>Profile</h3>
<p>Have a look on my profile.</p>
<ul class="info-list">
<li>
<strong>Name:</strong>
<span>Bhavesh Patel</span>
</li>
<li>
<strong>Job:</strong>
<span>Freelancer, Software Developer, Backend Developer, Python Developer, Cloud
Consultant</span>
</li>
<li>
<strong>Website:</strong>
<span>www.bhaveshpatel.xyz</span>
</li>
<li>
<strong>Email:</strong>
<span>
<a href="mailto:[email protected]"
class="color-888888">[email protected]</a>
</span>
</li>
<li>
<strong>Phone:</strong>
<span>
<a href="tel:+918169467730" class="color-888888">(+91) 8169 467 730</a>
</span>
</li>
</ul>
<!-- /info-list -->
</div>
<div class="col-six tab-full">
<h3>Skills</h3>
<p>
Python, Django, MySQL, Redis,
Elasticsearch, MongoDB, Linux,
GCP/AWS, ELK stack, JavaScript,
Docker, Web Development
(HTML/CSS), Bash Scripting, CI/CD,
RabbitMQ / Celery, Git, NiFi, Project management skills.
</p>
<ul class="skill-bars">
<li>
<div class="progress percent80">
<span>80%</span>
</div>
<strong>Python</strong>
</li>
<li>
<div class="progress percent70">
<span>70%</span>
</div>
<strong>Django</strong>
</li>
<li>
<strong>ElasticSearch / Mongo</strong>
<div class="progress percent70">
<span>70%</span>
</div>
</li>
<li>
<div class="progress percent80">
<span>80%</span>
</div>
<strong>MYSQL</strong>
</li>
<li>
<div class="progress percent50">
<span>50%</span>
</div>
<strong>GCP/AWS/Azure</strong>
</li>
<li>
<div class="progress percent60">
<span>60%</span>
</div>
<strong>HTML5/CSS3</strong>
</li>
</ul>
<!-- /skill-bars -->
</div>
</div>
<div class="row button-section">
<div class="col-twelve">
<a href="#contact" title="Hire Me" class="button stroke smoothscroll">Contact Me</a>
<a href="https://bit.ly/bhaveshpatelreume" title="Download Resume"
class="button button-primary">Download Resume</a>
<a href="documents/bhaveshpatel.vcf" title="Download Vcard" class="button stroke">Vcard</a>
</div>
</div>
</section>
<!-- /process-->
<!-- resume Section
================================================== -->
<section id="resume" class="grey-section">
<div class="row section-intro">
<div class="col-twelve">
<h5>Resume</h5>
<h2>More of my credentials.</h2>
<p class="lead">
<p class="margin-bottom-0">The only source of
knowledge is experience.</p>
<cite> ~ Albert Einstein</cite>
</p>
</div>
</div>
<!-- /section-intro-->
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Work Experiences</h2>
</div>
<!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Software Engineer III - Backend</h3>
<p>April 2021 - Present </p>
</div>
<div class="timeline-content">
<h4>
<a target="_blank" href="https://haptik.ai/">
<strong>Haptik, Inc.</strong>
</a>
</h4>
<b>Summary</b>:
<p style="margin-bottom: 0;">
<ul>
<li>
Designed & implemented end to end software architectures & products features for the
Analytics tool, Currently working on the NiFi tool, where the client can integrate
the analytical data stream into their own ETL Pipelines.
</li>
</ul>
</p>
</div>
<div class="timeline-header">
<h3>Software Engineer II - Backend</h3>
<p>July 2019 - March 2021 </p>
</div>
<div class="timeline-content">
<b>Summary</b>:
<p style="margin-bottom: 0;">
<ul>
<li>
Worked with the platform team to develop tools required for Bot Building, Live agent
tool and analytics tool using Django (Python). Enhancement of the search features in
existing tools, Feedback collection journey.
</li>
<li>
Worked on the various features with the Live Agent Chat Platform, revamp entire
performance dashboard and leverage the performance of Elasticsearch for the
real-time metrics, upgraded module for generating analytics reports.
</li>
<li>
Involved in all different phases of SDLC including Systems Planning, Designing,
Programming, Testing, Documentation.
</li>
</ul>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Freelance Developer, Mumbai</h3>
<p>Jan 2019 - Present</p>
</div>
<div class="timeline-content">
<h4>
<a target="_blank"
href="https://bhaveshpatel.xyz/?utm_source=website&utm_medium=profile&utm_campaign=experiences"><strong>Freelancer</strong></a>
</h4>
<b>Summary:</b>
<p style="margin-bottom: 0;">
<ul>
<li>
Worked with 5+ Clients on various projects on custom automation scripts, web
development, End to End Inventory management with customised automation scripts and
built custom dashboard using Google Spreadsheet, App Scripts, Data Studio.
</li>
<li>
Several Websites using bootstrap and Several templates.
</li>
</ul>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Software Developer</h3>
<p>July 2017 - July 2019 </p>
</div>
<div class="timeline-content">
<h4>
<a target="_blank" href="https://athenasowl.tv/"><strong>AthenasOwl</strong></a>
<span>|</span>
<a target="_blank" href="https://www.quantiphi.com/"><strong>Quantiphi,
Inc.</strong></a>
</h4>
<b>Summary:</b>
<p style="margin-bottom: 0;">
<ul>
<li>Created RESTful microservices using
Django Rest Framework and setting-up
the infrastructure for the web
services, Writing reusable,
testable, and efficient code.</li>
<li>The role was to define the part of
the architecture for the
microservices</li>
<li>Built scraper script using python.
It is used to scrape both dynamic
and static pages.</li>
<li>Use GCP/AWS to setup and deploy the
microservices.</li>
<li>Understanding of the scalable
infrastructure using Ansible.</li>
<li>A good amount of knowledge of
Docker, kubernetes, Google Cloud
Functions, Google PubSub, and
orchestration.</li>
<li>Also leading a team of three
Software Developer and helping out
in the technical aspect.</li>
<li>Handling and owning end to end
client deliverable.</li>
<li>Contributing to the roadmap of the
product, and learning the various
aspect of the product life cycle.</li>
</ul>
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Web Developer Intern</h3>
<p>June 2016- July 2016 </p>
</div>
<div class="timeline-content">
<h4>
<a target="_blank" href="https://www.cirtru.com">
<strong>Cirtru - Circles of Trust</strong>
</a>
</h4>
<b>Summary:</b>
<p style="margin-bottom: 0;">
<ul>
<li>Started by learning AngularJS
framework. Major responsibility was
to create more user friendly website
and interactive.
</li>
<li>Fixing of mobile and desktop views,
some of the major bugs and add new
features.</li>
</ul>
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-android"></i>
</div>
<div class="timeline-header">
<h3>Backend Developer</h3>
<p>Jan 2016 - Apr 2016</p>
</div>
<div class="timeline-content">
<h4>
<a target="_blank" href="https://www.bit.do/Transfile">
<strong>Transfile (Project)</strong>
</a>
</h4>
<p>Transfile allows you to transfer files
wirelessly over the same network from
android device to computer through any
browser and view/play device's photos or
videos. I developed the back-end of the web
application and android
application.
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>PHP Developer Intern</h3>
<p>Dec 2015 - Jan 2016</p>
</div>
<div class="timeline-content">
<h4>
<strong>Magarmach.com (Startup)</strong>
</h4>
<p>Working as a web customization intern at
Magarmach, creating a custom panel which can
help them to view their user’s details and
their profile. Handling and maintaining
their website’s database.</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-newspaper-o"></i>
</div>
<div class="timeline-header">
<h3>Web Developer</h3>
<p>May 2015 - Oct 2015</p>
</div>
<div class="timeline-content">
<h4>
<strong>Newsplate (Project)</strong>
</h4>
<p>A website that keeps you updated with the
latest news. RSS feeds have been used to
generate content for the site. I developed
the back-end of the website while my
teammates developed the front-end of it.</p>
</div>
</div>
<!-- /timeline-block -->
</div>
<!-- /timeline-wrap -->
</div>
<!-- /col-twelve -->
</div>
<!-- /resume-timeline -->
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Education</h2>
</div>
<!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Bachelor of Engineering</h3>
<p>July 2013 - May 2017</p>
</div>
<div class="timeline-content">
<h4>Sardar Patel Institute of Technology</h4>
<p>Computer Engineering,
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Junior College</h3>
<p>July 2011 - Apr 2013</p>
</div>
<div class="timeline-content">
<h4>Thakur College of Science & Commerce</h4>
<p>Information Technology,
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>School</h3>
<p>Jun 2000 - June 2011</p>
</div>
<div class="timeline-content">
<h4>Samata Vidya Mandir</h4>
</div>
</div>
<!-- /timeline-block -->
</div>
<!-- /timeline-wrap -->
</div>
<!-- /col-twelve -->
</div>
<!-- /resume-timeline -->
</section>
<!-- /features -->
<!-- services Section
================================================== -->
<section id="services">
<div class="overlay"></div>
<div class="row section-intro">
<div class="col-twelve">
<h5>Services</h5>
<h2 style="color:antiquewhite;">What Can I Do For You?</h2>
<p class="lead">Feel free to contact me regarding any type
of project.</p>
</div>
</div>
<!-- /section-intro -->
<div class="row services-content">
<div id="owl-slider" class="owl-carousel services-list">
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-cloud"></i>
</span>
<div class="service-content">
<h3>Cloud Services</h3>
<p class="desc"></p>
</div>
</div>
<div class="service">
<span class="icon">
<i class="icon-window"></i>
</span>
<div class="service-content">
<h3>Web Development</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="icon-earth"></i>
</span>
<div class="service-content">
<h3>Web design</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-wordpress"></i>
</span>
<div class="service-content">
<h3>Wordpress Development</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-shopping-cart"></i>
</span>
<div class="service-content">
<h3>Ecommerce Websites</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-laptop"></i>
</span>
<div class="service-content">
<h3>Search Engine Optimization</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-laptop"></i>
</span>
<div class="service-content">
<h3>Application Development</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-magic"></i>
</span>
<div class="service-content">
<h3>Google Adwords Management</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-bar-chart"></i>
</span>
<div class="service-content">
<h3>Web Hosting</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="fa fa-globe"></i>
</span>
<div class="service-content">
<h3>Domain Name Registration</h3>
<p class="desc"></p>
</div>
</div>
<!-- /service -->
<div class="service">
<span class="icon">
<i class="icon-chat"></i>
</span>
<div class="service-content">
<h3>Website Maintenance</h3>
<p class="desc"></p>
</div>
</div>
</div>
<!-- /services-list -->
</div>
<!-- /services-content -->
</section>
<!-- /services -->
<!-- stats Section
================================================== -->
<div id="pricing">
<section id="stats" class="count-up">
<div class="row white add-bottom">
</div>
</section>
</div>
<!-- contact
================================================== -->
<section id="contact">
<div class="row section-intro">
<div class="col-twelve">
<h5>Contact</h5>
<h2 style="color:antiquewhite;">I'd Love To Hear From You.</h2>
</div>
</div>
<!-- /section-intro -->
<div class="row contact-form">
<div class="col-twelve">
<!-- contact-warning -->
<div id="message-warning">
</div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, Thank you!
<br>
</div>
<!-- form -->
<form name="contactForm" id="contactForm" method="post" action="">
<fieldset>
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value=""
minlength="2" required="">
</div>
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value=""
required="">
</div>
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10"
cols="50" required=""></textarea>
</div>
<div class="form-field">
<button class="submitform">Submit</button>
<div id="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</fieldset>
</form>
<!-- Form End -->
</div>
<!-- /col-twelve -->
</div>
<!-- /contact-form -->
<div class="row contact-info">
<div class="col-four tab-full">
<div class="icon">
<i class="icon-pin"></i>
</div>