-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
743 lines (660 loc) · 35.1 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
<!--
Author: w3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Kerala Block Chain Hub</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<meta name="keywords" content="A Platform to bring developers, professionals, experts and academicians together and build Blockchain community to host Blockchain related events." />
<script>
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- Custom Theme files -->
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" media="all">
<link href="css/style.css" type="text/css" rel="stylesheet" media="all">
<!-- font-awesome icons -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- //Custom Theme files -->
<!-- online-fonts -->
<link href="//fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800" rel="stylesheet">
<!-- //online-fonts -->
</head>
<body>
<script>
// When the user scrolls down 50px from the top of the document, resize the header's font size
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
document.getElementById("top_section").style.height = "80px";
document.getElementById("top_section").style.background = "#fff";
document.getElementById("logo").style.width = "300px";
} else {
document.getElementById("top_section").style.height = "200px";
document.getElementById("top_section").style.background = "transparent";
document.getElementById("logo").style.width = "400px";
}
}
</script>
<section class="main-banner" id="home">
<div class="layer">
<div class="header-wthree-top-w3layouts text-right" id="top_section">
<h1 id="logo" class="logo"><a href="index.html"><img class="img-responsive" style="width: 100%" src="pics/kbh_logo.png"> </a></h1>
<!--<ul class="list-unstyled apps-lists text-right">
<li>
<a href="#" class="btn"><span class="fa fa-apple mr-2" aria-hidden="true"></span>App Store</a>
</li>
<li class="ml-2">
<a href="#" class="btn"><span class="fa fa-android mr-2" aria-hidden="true"></span>Android</a>
</li>
</ul>-->
<ul id="menu">
<li>
<input id="check02" type="checkbox" name="menu" />
<label for="check02"><span class="fa fa-bars" aria-hidden="true"></span></label>
<ul class="submenu">
<li><a href="index.html">Home</a></li>
<li><a href="#about" class="scroll">About</a></li>
<li><a href="#services" class="scroll">Activities</a></li>
<li><a href="#contact" class="scroll">Contact</a></li>
</ul>
</li>
</ul>
</div>
<div class="container">
<div class="baner-info-w3layouts text-center">
<h3> Demystify Blockchain Technology for a Better World.</h3>
<!--<h6 class="mx-auto mt-md-4mt-3">Make cool pages easily with MyApp.</h6>-->
</div>
</div>
</div>
</section>
<!-- //banner -->
<!--/ banner-bottom-w3ls -->
<section class="banner-bottom-w3ls py-lg-5 py-4" id="about">
<div class="container py-sm-5 py-4">
<div class="ab-grids row text-left pb-3">
<h3 style="font-size: 30px;text-align: center" class="tittle mb-lg-4 mb-3">A PING FOUNDATION initiative in association with IAMAI Mobile 10X.
</h3>
<h4 class="my-3 text-center" style="color: #566773;letter-spacing: 1px;">A Platform to bring developers, professionals, experts and academicians together and build Blockchain community to host Blockchain related events.</h4>
<div class="col-lg-6 pt-lg-5">
<img src="pics/cubs.png" class="img-fluid" alt="mobile-image">
</div>
<div class="col-lg-6 pl-lg-5">
<div class="header-wthree pt-lg-5 pt-3 text-left">
<h3 class="tittle mb-lg-4 mb-3">BLOCKCHAIN</h3>
</div>
<p>Blockchain technology has in recent years become front and center of the technology discussion with perceptive applications being powered by its network architecture.</p>
<p class="my-3"></p>
<!-- <ul class="tic-info list-unstyled">
<li>
<span class="fa fa-check mr-2"></span> Integer sit amet mattis quam
</li>
<li>
<span class="fa fa-check mr-2"></span> Praesent ullamcorper dui turpis
</li>
<li>
<span class="fa fa-check mr-2"></span> Integer sit amet mattis quam
</li>
<li>
<span class="fa fa-check mr-2"></span> Integer sit amet mattis quam
</li>
</ul>-->
</div>
<div class="col-lg-12">
<div class="header-wthree pt-lg-12 pt-3 text-left">
<h3 class="tittle mb-lg-4 mb-3">PING FOUNDATION</h3>
<p>We have been actively organising various technical events and workshops since past 7 years. Through different programs we are aiming to develop a technical community of young technology aspirants and helping them to learn through open source product hosting. The viable and valuable goal of PING Foundation is to launch programs to address the critical need of advanced education by providing a career ladder and opportunities for growth.
All we are focusing is to provide a platform to collaborate all the Blockchain related events.
</p>
</div>
<div class="header-wthree pt-lg-12 pt-3 text-left">
<h3 class="tittle mb-lg-4 mb-3">KERALA BLOCKCHAIN HUB</h3>
<p>The main goal is to build a platform to collaborate all Blockchain related activities and events. We are looking forward to create an environment specifically targeting open source product development, meetups, expert talks, free training, investor connect, product solutions, workshops and incubation support precisely on Blockchain technology. We enable students and professionals to anticipate the trends in Blockchain technology and innovate to outperform. Our motive is to create an environment and aware businesses, enterprises, developers, and society by educating them about Blockchain technology.
</p>
</div>
</div>
</div>
</div>
</section>
<!--// banner-bottom-w3ls-->
<!--/services -->
<section class="services py-lg-5 py-4" id="services">
<div class="container py-sm-4 py-4">
<div class="header-wthree py-lg-5 py-3 text-center">
<h3 class="tittle mb-lg-3 mb-3">Activities</h3>
</div>
<div class="feature-grids row text-left">
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!--<span class="fa fa-pencil-square-o" aria-hidden="true"></span>-->
<h3 class="my-4">Open Source Product Development</h3>
<p>Open source is where innovation happens, wanna be a part of open source projects ?? Join with us...</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd2-active p-lg-5 p-3">
<!--<span class="fa fa-laptop" aria-hidden="true"></span>-->
<h3 class="my-4">Meetups</h3>
<p>Join with us for our meetups and get opportunities to connect with like minded fellows.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!--<span class="fa fa-folder-open-o" aria-hidden="true"></span>-->
<h3 class="my-4">Expert Talks</h3>
<p>Want to get updated with Blockchain technology ?? Be part of our amazing talks with industry experts</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!-- <span class="fa fa-clone" aria-hidden="true"></span>-->
<h3 class="my-4"> Free Training</h3>
<p>We provide free quality training on Blockchain technology and help to master your knowledge .</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!--<span class="fa fa-headphones" aria-hidden="true"></span>-->
<h3 class="my-4">Investor Connect</h3>
<p>Get connected with extensive networks of investors and find the right investor for your project.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!--<span class="fa fa-magic" aria-hidden="true"></span>-->
<h3 class="my-4">Product Solutions</h3>
<p>Provide the right Blockchain solution for businesses.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!-- <span class="fa fa-magic" aria-hidden="true"></span>-->
<h3 class="my-4">Workshops </h3>
<p>Workshops on latest Blockchain technology and helps to build career in Blockchain domain.</p>
</div>
</div>
<div class="col-lg-4">
<div class="bottom-gd p-lg-5 p-3">
<!--<span class="fa fa-magic" aria-hidden="true"></span>-->
<h3 class="my-4">Incubation Support</h3>
<p>Provide incubation support which help to create and grow young entrepreneurs.</p>
</div>
</div>
</div>
</div>
</section>
<!--// services -->
<!-- <!– banner-bottom-w3ls1 –>
<section class="mobile py-lg-5 py-5" id="screen">
<div class="container py-sm-3 py-3">
<div class="header-wthree py-lg-5 text-center">
<h3 class="tittle mb-lg-3 mb-3"> Screen shots</h3>
</div>
<div class="row">
<div class="col-lg-6 pr-lg-5">
<div class="header-wthree pt-lg-5 pt-3 text-left">
<h3 class="tittle mb-lg-4 mb-3">why it's best</h3>
</div>
<p>Integer sit amet mattis quam, sit amet ultricies velit. Praesent ullamcorper dui turpis.At vero eos et accusam et justo duo dolores et ea rebum. Lorem ipsum dolor sit ametLorem ipsum dolor sit amet,sed diam nonumy.</p>
<p class="my-3">Praesent ullamcorper dui turpis.At vero eos et accusam et justo duo dolores et ea rebum.</p>
<ul class="tic-info list-unstyled">
<li>
<span class="fa fa-bell-o mr-2"></span> Integer sit amet mattis quam
</li>
<li>
<span class="fa fa-database mr-2"></span> Praesent ullamcorper dui turpis
</li>
<li>
<span class="fa fa-bullhorn mr-2"></span> Integer sit amet mattis quam
</li>
<li>
<span class="fa fa-diamond mr-2"></span> Integer sit amet mattis quam
</li>
</ul>
</div>
<div class="slider col-lg-6 mt-4">
<div class="csslider infinity" id="slider1">
<input type="radio" name="slides" checked="checked" id="slides_1" />
<input type="radio" name="slides" id="slides_2" />
<input type="radio" name="slides" id="slides_3" />
<input type="radio" name="slides" id="slides_4" />
<ul>
<li>
<div id="bg">
<img src="images/mobile1.png" class="img-fluid" alt="mobile-image">
</div>
</li>
<li>
<div id="bg1">
<img src="images/mobile2.png" class="img-fluid" alt="mobile-image">
</div>
</li>
<li>
<div id="bg2">
<img src="images/mobile3.png" class="img-fluid" alt="mobile-image">
</div>
</li>
<li>
<div id="bg3">
<img src="images/mobile2.png" class="img-fluid" alt="mobile-image">
</div>
</li>
</ul>
<div class="arrows">
<label for="slides_1"></label>
<label for="slides_2"></label>
<label for="slides_3"></label>
<label for="slides_4"></label>
</div>
<div class="navigation">
<div>
<label for="slides_1"></label>
<label for="slides_2"></label>
<label for="slides_3"></label>
<label for="slides_4"></label>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- //banner-bottom-w3ls1 -->
<!-- <section class="subscribe">
<div class="layer two">
<div class="container text-center py-5">
<div class="header-wthree pt-lg-3 pt-4">
<h3 class="tittle two mb-lg-5 mb-3">Subscribe Now</h3>
</div>
<form action="#" method="post" class="newsletter mt-lg-5 mt-3">
<input class="email" type="email" placeholder="Your email..." required="">
<button class="but-submit" type="submit"><span class="fa fa-paper-plane-o" aria-hidden="true"></span> Subscribe</button>
</form>
</div>
</div>
</section>-->
<!-- Gallery -->
<!-- <section class="middile-sec pt-5" id="gallery">
<div class="container">
<div class="header-wthree py-lg-5 py-3 text-center">
<h3 class="tittle mb-lg-3 mb-3"> How It Looks</h3>
</div>
</div>
<div class="middile-inner-con">
<div class="tab-main mx-auto text-center">
<input id="tab1" type="radio" name="tabs" checked>
<label for="tab1"><span class="fa fa-laptop" aria-hidden="true"></span> Desktop</label>
<input id="tab2" type="radio" name="tabs">
<label for="tab2"><span class="fa fa-tablet" aria-hidden="true"></span> Tablet</label>
<input id="tab3" type="radio" name="tabs">
<label for="tab3"><span class="fa fa-mobile" aria-hidden="true"></span> Mobile</label>
<section id="content1">
<img src="images/tab1.png" class="img-fluid" alt="mobile-image">
</section>
<section id="content2">
<img src="images/tab2.png" class="img-fluid" alt="mobile-image">
</section>
<section id="content3">
<img src="images/mobile4.png" class="img-fluid" alt="mobile-image">
</section>
</div>
</div>
<div class="stats-info">
<div class="layer three">
<div class="container">
<div class="row text-center stats-inner-con">
<div class="col counter-gd">
<div class="counter">
<span class="fa fa-headphones" aria-hidden="true"></span>
<h3 class="timer count-title count-number">100</h3>
<p class="count-text">Support</p>
</div>
</div>
<div class="col counter-gd">
<div class="counter">
<span class="fa fa-user" aria-hidden="true"></span>
<h3 class="timer count-title count-number">1200</h3>
<p class="count-text">Cleints</p>
</div>
</div>
<div class="col counter-gd">
<div class="counter">
<span class="fa fa-tasks" aria-hidden="true"></span>
<h3 class="timer count-title count-number">1700</h3>
<p class="count-text">Pojects</p>
</div>
</div>
<div class="col counter-gd">
<div class="counter">
<span class="fa fa-coffee" aria-hidden="true"></span>
<h3 class="timer count-title count-number">157</h3>
<p class="count-text">Cups of Coffee</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!--//gallery -->
<!-- banner-bottom-w3ls1 -->
<!--<section class="mobile py-lg-5 py-5" id="screen">
<div class="container">
<div class="row py-lg-5 py-4">
<div class="col-lg-6 pr-lg-5">
<div class="header-wthree pt-lg-5 pt-3 text-left">
<h3 class="tittle mb-lg-4 mb-3">Choose Your Plan</h3>
</div>
<p>Integer sit amet mattis quam, sit amet ultricies velit. Praesent ullamcorper dui turpis.At vero eos et accusam et justo duo dolores et ea rebum..</p>
<p class="my-3">Praesent ullamcorper dui turpis.At vero eos et accusam et justo duo dolores et ea rebum.</p>
<ul class="tic-info list-unstyled">
<li>
<span class="fa fa-bell-o mr-2"></span> Integer sit amet mattis quam
</li>
<li>
<span class="fa fa-database mr-2"></span> Praesent ullamcorper dui turpis
</li>
<li>
<span class="fa fa-bullhorn mr-2"></span> Integer sit amet mattis quam
</li>
<li>
<span class="fa fa-diamond mr-2"></span> Integer sit amet mattis quam
</li>
</ul>
</div>
<div class="slider col-lg-6 mt-4">
<div class="row pricing-plans">
<div class="col-md-6 price-main text-center">
<div class="pricing-grid card">
<div class="card-body">
<h4 class="text-uppercase mb-3">Standard</h4>
<h5 class="card-title pricing-card-title">
<span class="align-top">$</span>199
</h5>
<ul class="price-in list-unstyled mt-3 mb-4">
<li>10 User Access</li>
<li>100gb Cloud Storage</li>
<li>10 Domain Names</li>
<li>35 Projects</li>
<li>Limited Support</li>
</ul>
<div class="price-button mt-md-3 mt-2">
<a class="btn text-uppercase" href="#contact">
Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 price-main text-center">
<div class="pricing-grid card">
<div class="card-body">
<h4 class="text-uppercase mb-3">Business</h4>
<h5 class="card-title pricing-card-title">
<span class="align-top">$</span>399
</h5>
<ul class="price-in list-unstyled mt-3 mb-4">
<li>10 User Access</li>
<li>100gb Cloud Storage</li>
<li>10 Domain Names</li>
<li>35 Projects</li>
<li>Limited Support</li>
</ul>
<div class="price-button mt-md-3 mt-2">
<a class="btn text-uppercase active" href="#contact">
Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- //banner-bottom-w3ls1 -->
<!--/ banner-bottom-w3ls -->
<!--<section class="banner-bottom-w3ls pt-lg-5 py-5" id="app-serve">
<div class="container pt-lg-5 py-5">
<div class="ab-grids row text-left">
<div class="col-lg-6 pt-lg-5 mt-lg-5 app-mob">
<img src="images/app2.png" class="img-fluid" alt="mobile-image">
</div>
<div class="col-lg-6 pl-lg-5 mb-lg-5">
<div class="header-wthree text-left">
<h3 class="tittle two mb-lg-4 mb-3">Suitable For Anytype LandingPage</h3>
</div>
<p>Integer sit amet mattis quam, sit amet ultricies velit.Integer sit amet mattis quam, sit amet ultricies velit. Praesent ullamcorper dui turpis. Praesent ullamcorper dui turpis.</p>
<div class="feature-grids text-left ml-3 mt-5">
<div class="bottom-gd my-lg-5">
<span class="fa fa-database" aria-hidden="true"></span>
<h3 class="my-4">Easily manage your works</h3>
<p>Integer sit amet mattis quam, sit amet ultricies velit. Praesent ullamcorper dui turpis.</p>
</div>
<div class="bottom-gd my-lg-5">
<span class="fa fa-money" aria-hidden="true"></span>
<h3 class="my-4">Get payments smoothly.</h3>
<p>Integer sit amet mattis quam, sit amet ultricies velit. Praesent ullamcorper dui turpis.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!–// banner-bottom-w3ls–>
<!–/testimonials–>
<section class="testimonials py-5" id="testimonials">
<div class="container py-lg-5 py-4">
<div class="header-wthree pb-lg-5 pb-3 text-center">
<h3 class="tittle mb-lg-3 mb-3"> What They Say</h3>
</div>
<div class="row mt-3">
<div class="col-lg-4 test-grid text-left px-lg-3">
<div class="test-info">
<p>Lorem Ipsum has been the industry's standard since the 1500s. Praesent ullamcorper dui turpis.</p>
<h3 class="mt-md-4 mt-3"> Abraham Smith</h3>
<div class="test-img text-center mb-3">
<img src="images/team.jpg" class="img-fluid" alt="user-image">
</div>
<div class="mobl-footer test-soc text-center">
<ul class="list-unstyled">
<li>
<a href="#">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li class="mx-1">
<a href="#">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 test-grid text-left px-lg-3">
<div class="test-info">
<p>Lorem Ipsum has been the industry's standard since the 1500s. Praesent ullamcorper dui turpis.</p>
<h3 class="mt-md-4 mt-3"> Mariana Noe</h3>
<div class="test-img text-center mb-3">
<img src="images/team1.jpg" class="img-fluid" alt="user-image">
</div>
<div class="mobl-footer test-soc text-center">
<ul class="list-unstyled">
<li>
<a href="#">
<span class="fa fa-dribbble"></span>
</a>
</li>
<li class="ml-1">
<a href="#">
<span class="fa fa-vk"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 test-grid text-left px-lg-3">
<div class="test-info">
<p>Lorem Ipsum has been the industry's standard since the 1500s. Praesent ullamcorper dui turpis.</p>
<h3 class="mt-md-4 mt-3">Nebula Nairobi</h3>
<div class="test-img text-center mb-3">
<img src="images/team2.jpg" class="img-fluid" alt="user-image">
</div>
<div class="mobl-footer test-soc text-center">
<ul class="list-unstyled">
<li>
<a href="#">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li class="mx-1">
<a href="#">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- contact -->
<!--<section class="contact py-5" id="contact">
<div class="container">
<div class="header-wthree py-lg-5 py-4 text-center">
<h3 class="tittle mb-lg-3 mb-3"> Get In Touch</h3>
</div>
<div class="contact-form mx-auto text-left">
<form name="contactform" id="contactform" method="post" action="#" onsubmit="return(validate());" novalidate="novalidate">
<div class="row">
<div class="col-lg-4 con-gd">
<div class="form-group" data-aos="fade-up">
<label>Name *</label>
<input type="text" class="form-control" id="name" placeholder="" name="name">
</div>
</div>
<div class="col-lg-4 con-gd">
<div class="form-group" data-aos="fade-up">
<label>Email *</label>
<input type="email" class="form-control" id="email" placeholder="" name="email">
</div>
</div>
<div class="col-lg-4 con-gd">
<div class="form-group" data-aos="fade-up">
<label>Phone No. *</label>
<input type="text" class="form-control" id="phone" placeholder="" name="phone">
</div>
</div>
</div>
<div class="form-group mb-5">
<label>How can we help?</label>
<textarea name="issues" class="form-control" id="iq" placeholder=""></textarea>
</div>
<div class="contact-page">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</form>
</div>
<div class="map my-md-5 my-3">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d100949.24429313939!2d-122.44206553967531!3d37.75102885910819!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80859a6d00690021%3A0x4a501367f076adff!2sSan+Francisco%2C+CA%2C+USA!5e0!3m2!1sen!2sin!4v1472190196783" class="map" style="border:0" allowfullscreen=""></iframe> </div>
</div>
</section>-->
<!-- //contact -->
<!-- footer -->
<footer class="footer py-sm-5 py-5" id="contact">
<div class="container py-xl-5 py-lg-3">
<div class="contact_grid_left">
<ul class="list-unstyled row text-left">
<li class="col-lg-4 adress-info">
<div class="row">
<div class="col-md-3 text-lg-center adress-icon">
<span class="fa fa-map-marker"></span>
</div>
<div class="col-md-9 text-left">
<h6><b>Location</b></h6>
<p>Mobile 10X Building,<br>
28/1650D Govt.Cyberpark<br>
Nellikode P.O<br>
Kozhikode<br>
Kerala<br>
673016
</div>
</div>
</li>
<li class="col-lg-4 adress-info">
<div class="row">
<div class="col-md-3 text-lg-center adress-icon">
<span class="fa fa-envelope-open-o"></span>
</div>
<div class="col-md-9 text-left">
<h6><b>Email</b></h6>
<a href="mailto:talk@pingfoundation.org"> talk@pingfoundation.org</a>
</div>
</div>
</li>
<li class="col-lg-4 adress-info">
<div class="row">
<div class="col-md-3 text-lg-center adress-icon">
<span class="fa fa-mobile"></span>
</div>
<div class="col-md-9 text-left">
<h6><b>Phone Number</b></h6>
<p>Nikhil Kilivayil</p>
<p>+91-9995471353</p>
</div>
</div>
</li>
</ul>
</div>
<!-- <div class="logo-2 text-center mt-4">
<h2><a class="logo" href="index.html">Launcher</a></h2>
</div>
<!– social icons footer –>
<div class="mobl-footer text-center mt-4">
<ul class="list-unstyled">
<li>
<a href="#">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li class="mx-1">
<a href="#">
<span class="fa fa-twitter"></span>
</a>
</li>
<li>
<a href="#">
<span class="fa fa-dribbble"></span>
</a>
</li>
<li class="ml-1">
<a href="#">
<span class="fa fa-vk"></span>
</a>
</li>
</ul>
</div>-->
<!-- copyright -->
<p class="copy-right-grids text-li text-center my-sm-4 my-4">© 2019 KBHUB.ORG All Rights Reserved
</p>
<div class="top_move text-center">
<a href="#home" class="move-top"><span class="fa fa-angle-up mb-3" aria-hidden="true"></span></a>
</div>
<!-- //copyright -->
</div>
</footer>
<!-- footer -->
</body>
</html>