-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1209 lines (912 loc) · 38.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>
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>Web Tree, Free Web Site, Web Apps, Mobile Apps, Desktop Apps , SMS Products, Kathmandu, Nepal </title>
<meta name="keywords" content="Web Tree, Free Web Site, Web Apps, Mobile Apps, Desktop Apps , SMS Products, Kathmandu, Nepal" />
<meta name="description" content="" />
<meta name="Author" content="webtree" />
<meta name="p:domain_verify" content="7e45ea5ee1024049808e6c8d41ceaff8"/>
<!-- mobile settings -->
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1, user-scalable=0" />
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<!-- WEB FONTS : use %7C instead of | (pipe) -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400%7CRaleway:300,400,500,600,700%7CLato:300,400,400italic,600,700" rel="stylesheet" type="text/css" />
<!-- CORE CSS -->
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- THEME CSS -->
<link href="assets/css/essentials.css" rel="stylesheet" type="text/css" />
<link href="assets/css/layout.css" rel="stylesheet" type="text/css" />
<!-- PAGE LEVEL SCRIPTS -->
<link href="assets/css/header-1.css" rel="stylesheet" type="text/css" />
<link href="assets/css/color_scheme/green.css" rel="stylesheet" type="text/css" id="color_scheme" />
</head>
<!--
AVAILABLE BODY CLASSES:
smoothscroll = create a browser smooth scroll
enable-animation = enable WOW animations
bg-grey = grey background
grain-grey = grey grain background
grain-blue = blue grain background
grain-green = green grain background
grain-blue = blue grain background
grain-orange = orange grain background
grain-yellow = yellow grain background
boxed = boxed layout
pattern1 ... patern11 = pattern background
menu-vertical-hide = hidden, open on click
BACKGROUND IMAGE [together with .boxed class]
data-background="assets/images/boxed_background/1.jpg"
-->
<body class="smoothscroll enable-animation">
<!-- wrapper -->
<div id="wrapper">
<!--
AVAILABLE HEADER CLASSES
Default nav height: 96px
.header-md = 70px nav height
.header-sm = 60px nav height
.noborder = remove bottom border (only with transparent use)
.transparent = transparent header
.translucent = translucent header
.sticky = sticky header
.static = static header
.dark = dark header
.bottom = header on bottom
shadow-before-1 = shadow 1 header top
shadow-after-1 = shadow 1 header bottom
shadow-before-2 = shadow 2 header top
shadow-after-2 = shadow 2 header bottom
shadow-before-3 = shadow 3 header top
shadow-after-3 = shadow 3 header bottom
.clearfix = required for mobile menu, do not remove!
Example Usage: class="clearfix sticky header-sm transparent noborder"
-->
<div id="header" class="sticky transparent header-md clearfix">
<!-- TOP NAV -->
<header id="topNav">
<div class="container">
<!-- Mobile Menu Button -->
<button class="btn btn-mobile" data-toggle="collapse" data-target=".nav-main-collapse">
<i class="fa fa-bars"></i>
</button>
<!-- Logo -->
<a class="logo pull-left scrollTo" href="#top">
<img src="assets/images/logo.png" alt="" />
<img src="assets/images/logo.png" alt="" />
</a>
<!--
Top Nav
AVAILABLE CLASSES:
submenu-dark = dark sub menu
-->
<div class="navbar-collapse pull-right nav-main-collapse collapse">
<nav class="nav-main">
<!--
.nav-onepage
Required for onepage navigation links
Add .external for an external link!
-->
<ul id="topMain" class="nav nav-pills nav-main nav-onepage">
<li class="active"><!-- HOME -->
<a href="#slider">
HOME
</a>
</li>
<li><!-- WORK -->
<a href="#about">
ABOUT
</a>
</li>
<li><!-- WORK -->
<a href="#work">
WEB SITES
</a>
</li>
<li><!-- TEAM -->
<a href="#">
APPS
</a>
</li>
<li><!-- CONTACT -->
<a href="#contact">
CONTACT
</a>
</li>
<li><!-- TESTIMONIALS -->
<a href="#canoffer">
<span style="color: #CC0000">CAN OFFER</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- /Top Nav -->
</div>
<!-- SLIDER -->
<section id="slider" class="fullheight" style="background-image:url('assets/images/dark.jpg')">
<div class="overlay dark-3"><!-- dark overlay [0 to 9 opacity] --></div>
<div class="display-table">
<div class="display-table-cell vertical-align-middle">
<div class="container">
<div class="slider-featured-text text-center">
<h1 class="text-white wow fadeInUp" data-wow-delay="0.4s">
<!--
TEXT ROTATOR
data-animation="fade|flip|flipCube|flipUp|spin"
-->
<span class="rotate" data-animation="flipCube" data-speed="3500">
CAN OFFER, FREE DESIGN, FREE HOSTING, FREE TRAINING, NP DOMAIN, 100% FREE !, SMS NOW
</span>
</h1>
<h2 class="weight-300 text-white wow fadeInUp" data-wow-delay="0.8s">Just Type <span style="color="yellow">ASK FREE</span> and send sms to <span style="color: yellow">37001</span> to book.</h2>
<a class="btn btn-primary btn-lg wow fadeInUp" data-wow-delay="1s" href="#canoffer">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- /SLIDER -->
<!-- CALLOUT -->
<section class="callout-dark heading-title heading-arrow-bottom" style="z-index:100;">
<div class="container">
<div class="text-center">
<h3 class="size-30">PROFESSIONAL, COMPETENT & FRIENDLY SERVICE. AMAZING SUPPORT.</h3>
<p>We believe in Customer Satisfaction. Our motto is:<BR/> SUPPORT IS MOST THE IMPORTANT THING IN SOFTWARE BUSINESS.</p>
</div>
</div>
</section>
<!-- /CALLOUT -->
<!-- ABOUT -->
<section id="about">
<div class="container">
<header class="text-center margin-bottom-60">
<h2>We Are WebTree</h2>
<p class="lead font-lato">Experienced, Enthusiastic, Hardworking, Skilled & Friendly</p>
<hr />
</header>
<div class="row">
<div class="col-sm-6">
<img class="img-responsive" src="assets/images/webtree_purple.jpg" alt="" />
</div>
<div class="col-sm-6">
<p class="dropcap">
WebTree is a team of experienced, enthusiastic, hardworking and skilled members, our primary goal is the quality job for our valued customers.
We are a team of professionals with experience in IT field up to 17 years.
Since the establishment of the company, a few years ago, there has been no looking back, and we take pride in keeping up with the everchanging world of Information Technology.
Our up-to-date knowledge in the field of web technology, relational database management system and, most recently, NoSQL datbases enable us to deliver practical, latest, robust, efficient and manageable solutions to our customers. Main aim of our business is to ensure our customers the value for their money.
It would be a great pleasure and even the matter of pride for us if we get an opportunity to be useful to your organization in someway. Remember us for Web Sites, Web App, Mobile Apps and SMS related products. Thank You.
</p>
<hr />
<div class="row countTo-sm text-center">
<div class="col-xs-6 col-sm-4">
<i class="fa fa-users size-20"></i>
<span class="countTo" data-speed="3000" style="color:#59BA41">100</span> +
<h6>HAPPY CLIENTS</h6>
</div>
<div class="col-xs-6 col-sm-4">
<i class="fa fa-briefcase size-20"></i>
<span class="countTo" data-speed="3000" style="color:#774F38">17</span> +
<h6>YEARS OF EXPERIENCE</h6>
</div>
<div class="col-xs-6 col-sm-4">
<i class="fa fa-twitter size-20"></i>
<span class="countTo" data-speed="3000" style="color:#C02942">100</span> %
<h6>FRIENDLY SUPPORT</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /ABOUT -->
<!-- WORK -->
<section id="work">
<div class="container">
<header class="text-center margin-bottom-60">
<h2>Web Site Design</h2>
<p class="lead font-lato">Cloud / Dedicated Server Hosted, Pro Quality Design, Responsive, Secure & Dynamic Websites</p>
<hr />
</header>
<div class="row">
<div class="col-md-4 col-sm-4">
<div class="price-clean">
<h4>
<sup>Rs.</sup>0<em>/Year</em>
</h4>
<h5> CAN OFFER </h5>
<hr />
<p>PRO HTML5/CSS3 Design: About Us, Products, Services, Portfolio, News, Gallery, Social Integration, Contact, Location Map & more.</p>
<hr />
<p>Dynamic: CMS Based, Manage your content yourself</p>
<hr />
<p>Unlimited Hosting, Unlimited Bandwidth: Host all website related files</p>
<hr />
<p>Cloud / Dedicated Server Hosted, Fast, 99/99% SLA</p>
<hr />
<p>Secured SSL (HTTPS)</p>
<hr />
<p>Responsive: Mobile, Desktop, Laptop & Tablets</p>
<hr />
<p>SEO Ready, Google Analytics</p>
<hr />
<p>5 Emails, 5GB/Email</p>
<hr />
<p>Social Integraton: Facebook, Google Plus, Instagram, Pinterest, LinkedIn, YouTube, Twitter & more</p>
<hr />
<a href="#contact" class="btn btn-3d btn-primary">Contact Us</a>
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="price-clean price-clean-popular">
<div class="ribbon">
<div class="ribbon-inner">POPULAR</div>
</div>
<h4>
<sup>Rs.</sup>35,000<em>/year</em>
</h4>
<h5> STANDARD </h5>
<hr />
<p>PRO HTML5/CSS3 Design: About Us, Products, Services, Portfolio, News, Gallery, Social Integration, Contact, Location Map & more.</p>
<hr />
<p>Dynamic: CMS Based, Manage your content yourself</p>
<hr />
<p>Unlimited Hosting, Unlimited Bandwidth: Host all website related files</p>
<hr />
<p>Cloud / Dedicated Server Hosted, Fast, 99/99% SLA</p>
<hr />
<p>Secured SSL (HTTPS)</p>
<hr />
<p>Responsive: Mobile, Desktop, Laptop & Tablets</p>
<hr />
<p>SEO Ready, Google Analytics</p>
<hr />
<p>5 Emails, 5GB/Email</p>
<hr />
<p>Social Integraton: Facebook, Google Plus, Instagram, Pinterest, LinkedIn, YouTube, Twitter & more</p>
<hr />
<a href="#contact" class="btn btn-3d btn-primary">Contact Us</a>
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="price-clean">
<h4>
<sup>Rs.</sup>50,000<em>/year</em>
</h4>
<h5> ECOMMERCE </h5>
<hr />
<p>All of Standard Features</p>
<hr />
<p>Shopping Cart</p>
<hr />
<p>ESewa, iPay, nPay Integration</p>
<hr />
<p>Paypal & Credit Cards Integration</p>
<hr />
<p>Additional Security</p>
<hr />
<p>Google AdWords / Facebook Promotion worth Rs. 5,000</p>
<hr />
<a href="#contact" class="btn btn-3d btn-primary">Contact Us</a>
</div>
</div>
</div>
<!-- CONTACT US -->
<div class="callout alert alert-transparent noborder margin-top-60 margin-bottom-60">
<div class="text-center">
<h3>Call now at <strong>+9841758519</strong> and get 10% discount!</h3>
<p class="font-lato size-20">
We truly care about our customers and our product.
</p>
<a href="#contact" class="scrollTo btn btn-default btn-lg margin-top-30">CONTACT US</a>
</div>
</div>
<!-- /CONTACT US -->
</div>
</section>
<!-- /WORK -->
<!-- CANOFFER -->
<section id="canoffer">
<div class="container">
<header class="text-center margin-bottom-60">
<h2>CAN Infotech 2017 Offer</h2>
<p class="lead font-lato">Truely FREE and Complete Website Package for your organization for 1 Year.<br>You pay Rs. 2000 to 10,000/year from second year depending upon the site visits. <br>Typical per year hosting price is Rs. 3000/year</p>
<hr />
</header>
<div class="row">
<div class="col-sm-12">
<ul class="list-unstyled list-icons">
<li>
<i class="fa fa-info-circle text-info"></i> WHY FREE ? <BR/><BR/>
WebTree also has products like Web App, Mobile App, SMS System etc. So what we are actually trying to do here is to widen our client base and strengthen bond with you by
providing this free world class premium website. We believe CLIENTs are assets. We are investing on acquiring genuine clients. <br/><br/>Moreover we are sure we will be able to recover this investment in coming years from hosting renewals.<br/><br/>
</li>
<li>
<i class="fa fa-info-circle text-info"></i> HOW TO BOOK ?<BR/><BR/>
Simply Send type <strong>ASK FREE [email protected]</strong> and send it to <strong>37001</strong>.<br/><br/>
</li>
<li>
<i class="fa fa-info-circle text-info"></i> Who are Eligible for FREE Offer?<BR/><BR/>
Any organization registered with Government of Nepal, excluding news sites, government organizations, INGOs or sites with custom requirements. We fully reserve right to accept or deny this offer to any party on our sole discretion.<br/><br/>
</li>
<li>
<i class="fa fa-info-circle text-info"></i> Want to be Assured??<BR/><BR/>
<strong>We will sign contract with your to create and host your website for 1 full year.</strong> You have to upload the content yourself using our Easy Content Management System. We will provide Help Files, How to Videos and even FREE training at a certain venue by appointment regularly.<br/><br/>
<strong>If you want our help to upload the content, we will charge 300/hour to maintain the cost of support staffs.</strong> <br/><br/>
Web Hosting has to be renewed from the second year.
(From Rs. 2,000 - 10,000 per year depending upon site traffic)<br/><br/>
<strong>Free Offer wil be processed only after the CAN InfoTech 2017. We will contact you in your mobile number that you used to book this offer.</strong><br/><br/>
</li>
<li>
<i class="fa fa-info-circle text-info"></i> PLEASE REMEMBER<BR/><BR/>
<EM style="color: #cc0000">We will not provide our technology to the organizations later if they want to host their website elsewhere. Though, we will help them to retrive their data.</EM><br/><br/>
</li>
</ul>
</div>
</div>
<!--portfolio-->
<h1>A few Design Samples. We use only PREMIUM website designs either designed by us or purchased from marketplaces.</h1>
<div id="portfolio" class="portfolio-nogutter">
<div class="row mix-grid">
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/1.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/1.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/2.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/2.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/3.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/3.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/4.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/4.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/5.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/5.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/6.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/6.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/7.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/7.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/8.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/8.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/9.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/9.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/10.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/10.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/11.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/11.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="img/12.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus size-20"></span>
</a>
</span>
</span>
<img class="img-responsive" src="img/12.jpg" width="600" height="399" alt="">
</figure>
</div>
</div><!-- /item -->
</div>
</div>
<!-- portfolio end -->
</div>
</section>
<!-- /CAN OFFER -->
<!-- CALLOUT -->
<div class="callout callout-theme-color">
<div class="container">
<div class="row">
<div class="col-md-9"><!-- title + shortdesc -->
<h3>Want to be part of our team?</h3>
<p>If so, click to join now, and be part of our dynamic team!</p>
</div>
<div class="col-md-3"><!-- button -->
<a href="#contact" class="btn btn-primary btn-lg">Join Our Team</a>
</div>
</div>
</div>
</div>
<!-- /CALLOUT -->
<!-- PARALLAX -->
<section class="parallax parallax-2" style="background-image: url('assets/images/wall3-min.jpg');">
<div class="overlay dark-6"><!-- dark overlay [1 to 9 opacity] --></div>
<div class="container">
<div class="text-center">
<h3 class="nomargin">Share Your Thoughts</h3>
<p class="font-lato weight-300 lead nomargin-top">We can't solve problems by using the same kind of thinking we used when we created them.</p>
</div>
<ul class="margin-top-80 social-icons list-unstyled list-inline">
<li>
<a target="_blank" href="#">
<i class="fa fa-facebook"></i>
<h4>Facebook</h4>
<span>Be Our Friend</span>
</a>
</li>
<li>
<a target="_blank" href="#">
<i class="fa fa-twitter"></i>
<h4>Twitter</h4>
<span>Follow Us</span>
</a>
</li>
<li>
<a target="_blank" href="#">
<i class="fa fa-youtube"></i>
<h4>Youtube</h4>
<span>Our Videos</span>
</a>
</li>
<li>
<a target="_blank" href="#">
<i class="fa fa-instagram"></i>
<h4>Instagram</h4>
<span>See Our Images</span>
</a>
</li>
<li>
<a target="_blank" href="#">
<i class="fa fa-linkedin"></i>
<h4>Linkedin</h4>
<span>Check Our Identity</span>
</a>
</li>
<li>
<a target="_blank" href="#">
<i class="fa fa-pinterest"></i>
<h4>Pinterest</h4>
<span>Visual Discovery</span>
</a>
</li>
</ul>
</div>
</section>
<!-- /PARALLAX -->
<!-- CONTACT -->
<section id="contact">
<div class="container">
<header class="text-center margin-bottom-60">
<h2>Contact Us</h2>
<p class="lead font-lato">Lorem ipsum dolor sit amet adipiscium elit</p>
<hr />
</header>
<div class="row">
<!-- FORM -->
<div class="col-md-8 col-sm-8">
<h3>Drop us a line or just say <strong><em>Hello!</em></strong></h3>
<!--
MESSAGES
How it works?
The form data is posted to php/contact.php where the fields are verified!
php.contact.php will redirect back here and will add a hash to the end of the URL:
#alert_success = email sent
#alert_failed = email not sent - internal server error (404 error or SMTP problem)
#alert_mandatory = email not sent - required fields empty
Hashes are handled by assets/js/contact.js
Form data: required to be an array. Example:
contact[email][required] WHERE: [email] = field name, [required] = only if this field is required (PHP will check this)
Also, add `required` to input fields if is a mandatory field.
Example: <input required type="email" value="" class="form-control" name="contact[email][required]">
PLEASE NOTE: IF YOU WANT TO ADD OR REMOVE FIELDS (EXCEPT CAPTCHA), JUST EDIT THE HTML CODE, NO NEED TO EDIT php/contact.php or javascript
ALL FIELDS ARE DETECTED DINAMICALY BY THE PHP
WARNING! Do not change the `email` and `name`!
contact[name][required] - should stay as it is because PHP is using it for AddReplyTo (phpmailer)
contact[email][required] - should stay as it is because PHP is using it for AddReplyTo (phpmailer)
-->
<!-- Alert Success -->
<div id="alert_success" class="alert alert-success margin-bottom-30">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>Thank You!</strong> Your message successfully sent!
</div><!-- /Alert Success -->
<!-- Alert Failed -->
<div id="alert_failed" class="alert alert-danger margin-bottom-30">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>[SMTP] Error!</strong> Internal server error!
</div><!-- /Alert Failed -->
<!-- Alert Mandatory -->
<div id="alert_mandatory" class="alert alert-danger margin-bottom-30">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>Sorry!</strong> You need to complete all mandatory (*) fields!
</div><!-- /Alert Mandatory -->
<form action="http://www.ait.com.np/php/webtree/contact.php" method="post" enctype="multipart/form-data">
<fieldset>
<input type="hidden" name="action" value="contact_send" />
<div class="row">
<div class="form-group">
<div class="col-md-4">
<label for="contact:name">Full Name *</label>
<input required type="text" value="" class="form-control" name="contact[name][required]" id="contact:name">
</div>
<div class="col-md-4">
<label for="contact:email">E-mail Address *</label>
<input required type="email" value="" class="form-control" name="contact[email][required]" id="contact:email">
</div>
<div class="col-md-4">
<label for="contact:phone">Phone</label>
<input type="text" value="" class="form-control" name="contact[phone]" id="contact:phone">
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-8">
<label for="contact:subject">Subject *</label>
<input required type="text" value="" class="form-control" name="contact[subject][required]" id="contact:subject">
</div>
<div class="col-md-4">
<label for="contact_department">Department</label>
<select class="form-control pointer" name="contact[department]">
<option value="">--- Select ---</option>
<option value="Marketing">Marketing/Sales</option>
<option value="Webdesign">Webdesign</option>
<option value="Support">Support</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-12">
<label for="contact:message">Message *</label>
<textarea required maxlength="10000" rows="8" class="form-control" name="contact[message]" id="contact:message"></textarea>
</div>
</div>
</div>
</fieldset>
<div class="row">
<div class="col-md-12">
<button type="submit" class="btn btn-primary"><i class="fa fa-check"></i> SEND MESSAGE</button>
</div>
</div>
</form>
</div>
<!-- /FORM -->
<!-- INFO -->
<div class="col-md-4 col-sm-4">
<h2>Visit Us</h2>
<!--
Available heights
height-100
height-150
height-200
height-250
height-300
height-350
height-400
height-450
height-500
height-550
height-600
-->
<div id="map2" class="height-400 grayscale"></div>
<hr />
<p>
<span class="block"><strong><i class="fa fa-map-marker"></i> Address:</strong> Sorakhutte, Nayabazar, Kathmandu, Nepal </span>
<span class="block"><strong><i class="fa fa-phone"></i> Phone:</strong> <a href="tel:9841758519">9841758519</a></span>
<span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a href="mailto:[email protected]">[email protected]</a></span>
</p>
</div>
<!-- /INFO -->
</div>
</div>
</section>