forked from Ping-Foundation/Ping-Static-Website
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
1110 lines (943 loc) · 53 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 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">
<title>Ping </title>
<!-- Bootstrap Core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Main stylesheet -->
<link href="assets/css/hallooou.css" rel="stylesheet">
<!-- Color stylesheet -->
<!-- <link href="assets/css/colors.css" rel="stylesheet">
<link href="assets/css/colors_2.css" rel="stylesheet">
<link href="assets/css/colors_3.css" rel="stylesheet">
<link href="assets/css/colors_4.css" rel="stylesheet"> -->
<!-- Parallax stylesheet -->
<link href="assets/css/parallax.css" rel="stylesheet">
<!-- Plugin stylesheets -->
<link href="assets/css/plugins/owl.carousel.css" rel="stylesheet">
<link href="assets/css/plugins/owl.theme.css" rel="stylesheet">
<link href="assets/css/plugins/owl.transitions.css" rel="stylesheet">
<link href="assets/css/plugins/animate.css" rel="stylesheet">
<link href="assets/css/plugins/magnific-popup.css" rel="stylesheet">
<link href="assets/css/plugins/jquery.mb.YTPlayer.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Raleway:100,600' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<!-- 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>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script>
document.createElement('video');
</script>
<style>
.social:hover {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
}
.social {
-webkit-transform: scale(0.8);
/* Browser Variations: */
-moz-transform: scale(0.8);
-o-transform: scale(0.8);
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
}
</style>
<![endif]-->
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
</head>
<body id="home" class="parallax-page">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header pull-left">
<a class="navbar-brand page-scroll" href="#home">
<!-- replace with your brand logo/text -->
<span id="logo" class="brand-logo"><img id="logo-img" src="assets/ping_logo.png"
onerror="this.src='assets/images/logo.png'; this.onerror=null;"
class="img-responsive"></span>
</a>
</div>
<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("logo").style.width = "13%";*/
$(".brand-logo").css("width", "100px");
document.getElementById("logo-img").style.marginTop = "-20px";
} else {
document.getElementById("logo").style.width = "25%";
document.getElementById("logo-img").style.marginTop = "0px";
}
}
</script>
<div class="main-nav pull-right">
<div class="button_container toggle">
<span class="top"></span>
<span class="middle"></span>
<span class="bottom"></span>
</div>
</div>
<div class="overlay" id="overlay">
<nav class="overlay-menu">
<ul>
<li><a href="#about">About us</a></li>
<li><a href="#activities">Activities</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#projects">Projects</a></li>
<!--<li><a href="#team">Our Team</a></li>-->
<!--<li><a href="#portfolio">Portfolio</a></li>-->
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#join">Join Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</div><!-- /.container -->
</nav>
<!-- Intro Header -->
<!-- Full Page Image Background Carousel Header -->
<header id="intro-carousel head" class="carousel slide">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<div id="parallax-slide" class="fill"></div>
<div class="carousel-caption">
<!-- <h1 class="animated slideInDown">Customizable <span class="highlight">colors</span> & blocks</h1>-->
<h3 style="color: #fff;" class="intro-text animated slideInUp">With a vision of<br> “ Finding Empty
Space”, <br>Ping Foundation intend to build
a passionate team to resolve unsolved problems and pave the way for a better world.
</h3>
<!-- <a href="http://bit.ly/hh5_template" class="btn btn-default btn-lg">Download theme</a>-->
</div>
<div class="overlay-detail"></div>
</div><!-- /.item -->
</div>
<div class="mouse"></div>
</header>
<!-- About Section -->
<section id="about" class="about content-section alt-bg-light">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>ABOUT</h2>
<!--<h3 class="caption gray">Customers in 100+ countries use our services</h3>-->
<p>Ping Foundation formerly known as Crazy Amigos is an open source community lead by a bunch of
tech enthusiasts focusing on open source product development and free training.
A team of tech professionals, students and aficionados with the mission to make the world a
better place by driving the youth to excellence. Be part of PING FOUNDATION to get motivated and
explore open source in all it's beauty...</p>
<!-- <blockquote>
There are two types of people who will tell you that you cannot make a difference in this world: those who are afraid to try and those who are afraid you will succeed.
<span>Ray Goforth</span>
</blockquote>-->
<!--<h3 class="gray light">Over the past 11 years we've worked with some amazing small businesses, non-profits, academic institutions and even Fortune 100 companies.</h3>-->
</div><!-- /.col-md-6 -->
<!--<div class="col-md-6">
<!– Display image –>
<!– <img src="assets/images/hallooou_template-iphone_sm.png" class="img-responsive"> –>
<!– Optional video embed code –>
<div class="embed-responsive embed-responsive-16by9">
<iframe src="https://player.vimeo.com/video/132613118?title=0&byline=0&portrait=1" class="embed-responsive-item" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>-->
<!-- /.col-md-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.section -->
<!-- Services Section -->
<section id="activities" class="services content-section">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<!-- <h2>What we do</h2>-->
<h3 class="caption gray">The viable and valuable goal is to launch programs to address the critical
need of advanced education by providing a career ladder and opportunities for growth.</h3>
</div><!-- /.col-md-12 -->
<div class="container">
<div class="row text-center">
<h2>ACTIVITIES</h2>
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!--<i class="fa fa-cogs fa-3x"></i>-->
<h4>Open Source Product Development</h4>
<p>Next-generation technologies are increasingly developed and refined in open source
projects. Be part of our open source product development which will eventually
offers a plethora of benefits...</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!-- <i class="fa fa-paint-brush fa-3x"></i>-->
<h4>Free Training</h4>
<p>Ping Foundation with the support of experts from various technical field, have come
up with free training programs to help students become professionals. </p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!--<i class="fa fa-users-class fa-3x"></i>-->
<h4>Workshops</h4>
<p>Workshops and conferences will helps in gaining expert knowledge, networking with
others and renewing motivation and confidence. Be part of our workshops and grab the
opportunity to get acquainted with technical skills.</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!-- <i class="fa fa-database fa-3x"></i>-->
<h4>Expert Talk</h4>
<p>Want to hear about trending technologies ? Be with us to get updated with latest
technology from industry experts..</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!-- <i class="fa fa-align-left fa-3x"></i>-->
<h4>Meetups</h4>
<p>
We organize meetups and brainstorming sessions where experts will share innovations
on different sectors. Join and be part of awesome community.
</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!--<i class="fa fa-camera fa-3x"></i>-->
<h4>Investor Connect</h4>
<p>Looking to raise funds for your startup ??? Join with us to get connected with
investors and get funded.</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!--<i class="fa fa-camera fa-3x"></i>-->
<h4>Product Solutions</h4>
<p>Are you an entrepreneur struggling with your product? We are here to provide you with
all product related solutions. All you have to do is to approach us...</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
<div class="col-md-6">
<div class="row services-item sans-shadow text-center">
<!--<i class="fa fa-camera fa-3x"></i>-->
<h4>Incubation Support</h4>
<p>Do you have a great startup idea ? We are ready to provide needed incubation support.
We help you to transform your idea into product...</p>
</div><!-- /.row -->
</div><!-- /.col-md-4 -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.section -->
<!-- Events Section -->
<section id="events" class="team content-section">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>EVENTS</h2>
<h3 class="caption gray">Ping Foundation have been regularly organizing different programs aiming to develop a technical community of young technology aspirants and helping them to learn through open source product hosting.</h3>
<a data-toggle="tab" href="#menu1"><button style="width: 250px;" class="btn btn-default">Upcoming Events</button></a>
<a data-toggle="tab" href="#menu2"><button style="width: 250px;" class="btn btn-default">Previous Events</button></a>
</div><!-- /.col-md-12 -->
<div class="container">
<div class="tab-content">
<div id="menu1" class="container tab-pane active">
<div class="row">
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/typing-on-mac.jpg" alt="" class="img-responsive">
<figcaption>
<p>2 Days Event Focusing on Finding Solutions to Unmet Medical Needs Using Latest echnology.</p>
<a href="#"><button type="submit" name="submit" class="btn btn-default">Register Now</button></a>
</figcaption>
</figure>
<h4>Medi-Tech</h4>
<h5 class="caption gray">24th & 25th August 2019</h5>
</div><!-- /.event -->
</div><!-- /.col-md-4 -->
</div><!-- /.row -->
</div>
<div id="menu2" class="container tab-pane fade">
<div class="row">
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/events/bc-poster.jpg" alt="" class="img-responsive">
<figcaption>
<p>Node.js Web Development Bootcamp & Internship</p>
<a href="events/nodejs.html"><button type="submit" name="submit" class="btn btn-default">Know More</button></a>
</figcaption>
</figure>
<h4>Bootcamp</h4>
<h5 class="caption gray">1st to 16th July, 2019</h5>
</div><!-- /.event -->
</div><!-- /.col-md-4 -->
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/events/codefun-poster.jpeg" alt="" class="img-responsive">
<figcaption>
<p>2 Days free Unity3D Game Development Workshop</p>
<a href="events/codefun.html"><button type="submit" name="submit" class="btn btn-default">Know More</button></a>
</figcaption>
</figure>
<h4>Code Fun 3.0</h4>
<h5 class="caption gray">11th and 12th April, 2019</h5>
</div><!-- /.event -->
</div><!-- /.col-md-4 -->
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/events/youturn-poster.jpg" alt="" class="img-responsive">
<figcaption>
<p>12 Days free Node.js Web Development Workshop</p>
<a href="events/youturn.html"><button type="submit" name="submit" class="btn btn-default">Know More</button></a>
</figcaption>
</figure>
<h4>You Turn 2.0</h4>
<h5 class="caption gray">17th to 28th February, 2019</h5>
</div><!-- /.event -->
</div><!-- /.col-md-4 -->
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/events/kbh-poster.jpg" alt="" class="img-responsive">
<figcaption>
<p>Kerala Blockchain Hub</p>
<a href="events/kbh.html"><button type="submit" name="submit" class="btn btn-default">Know More</button></a>
</figcaption>
</figure>
<h4>Kerala Blockchain Summit</h4>
<h5 class="caption gray">5th January, 2019</h5>
</div><!-- /.event -->
</div><!-- /.col-md-4 -->
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/events/10dka-poster.jpg" alt="" class="img-responsive">
<figcaption>
<p>10 Days free Kotlin Android Workshop.</p>
<a href="events/10dka.html"><button type="submit" class="btn btn-default">Know More</button></a>
</figcaption>
</figure>
<h4>Kotlin Android Workshop</h4>
<h5 class="caption gray">6th July to 27th July, 2018</h5>
</div><!-- /.event -->
</div><!-- /.col-md-4 -->
</div><!-- /.row -->
</div>
</div>
</div><!-- /.container -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.our-team -->
<!-- Products Section -->
<section id="projects" class="products content-section parallax">
<div class="container">
<div class="row">
<div class="col-md-4">
<!--<img src="assets/images/hallooou_template-iphone_white.png" class="center-block img-responsive">-->
</div><!-- /.col-md-4 -->
<div class="col-md-8">
<div class="products-container">
<div class="col-md-12">
<h2>Projects</h2>
<h3 class="caption white" style="color: #fff;font-weight: 600">PING FOUNDATION has its own
in-house products under the banner of YENG apps.</h3>
</div><!-- /.col-md-12 -->
<div class="col-md-12 product-item">
<div class="media-left">
<span class=""><img src="assets/yeng.png"> </span>
</div><!-- /.media-left -->
<div class="media-body">
<h3 class="media-heading">Yeng</h3>
<p>Yeng is the next generation mobile app which leverages bleeding edge technology to
better enhance your alma mater experience through participation from fellow
students, faculties and the general public. Experience and streamline your
University life like never before using Yeng. </p>
</div><!-- /.media-body -->
</div><!-- /.col-md-6 -->
<!-- <div class="col-md-12 product-item">
<div class="media-left">
<span class="icon" style="background: #fff"><img class="img-responsive" src="assets/kotlin.png"></span>
</div><!– /.media-left –>
<div class="media-body">
<h3 class="media-heading">10 Days Kotlin Workshop</h3>
<p>PING FOUNDATION hosted 10 days Kotlin-Android Workshop in association with IAMAI mobile 10X at Government Cyberpark, Calicut.</p>
</div><!– /.media-body –>
</div><!– /.col-md-6 –>-->
<div class="col-md-12 product-item">
<div class="media-left">
<span class="icon" style="background: #fff"><img style="width: 100px;margin-left: -26px"
src="assets/kbh-logo.png"></span>
</div><!-- /.media-left -->
<div class="media-body">
<h3 class="media-heading">Kerala Blockchain Hub</h3>
<p>PING FOUNDATION is launching Kerala Blockchain Hub in order to collaborate all the
Blockchain related activities.</p>
</div><!-- /.media-body -->
</div><!-- /.col-md-6 -->
</div><!-- /.products-container -->
</div><!-- /.col-md-8 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.products -->
<!-- Our team Section
<section id="team" class="team content-section">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>Our Team</h2>
<h3 class="caption gray">Meet the people who make awesome stuffs</h3>
</div> /.col-md-12
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/lauren-cox.jpg" alt="" class="img-responsive">
<figcaption>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae asperiores mollitia.</p>
<ul>
<li><a href=""><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</figcaption>
</figure>
<h4>Lauren Cox</h4>
<p>Creative Director</p>
</div> /.team-member
</div> /.col-md-4
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/jessie-barnett.jpg" alt="" class="img-responsive">
<figcaption>
<p>Neque minima ea, a praesentium saepe nihil maxime quod esse numquam explicabo eligendi.</p>
<ul>
<li><a href=""><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</figcaption>
</figure>
<h4>Jessie Barnett</h4>
<p>UI/UX Designer</p>
</div> /.team-member
</div> /.col-md-4
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/terry-fletcher.jpg" alt="" class="img-responsive">
<figcaption>
<p>Temporibus dolor, quisquam consectetur molestias, veniam voluptatum. Beatae alias omnis totam.</p>
<ul>
<li><a href=""><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</figcaption>
</figure>
<h4>Terry Fletcher</h4>
<p>Web Developer</p>
</div> /.team-member
</div> /.col-md-4
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/lauren-cox.jpg" alt="" class="img-responsive">
<figcaption>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae asperiores mollitia.</p>
<ul>
<li><a href=""><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</figcaption>
</figure>
<h4>Lauren Cox</h4>
<p>Creative Director</p>
</div> /.team-member
</div> /.col-md-4
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/jessie-barnett.jpg" alt="" class="img-responsive">
<figcaption>
<p>Neque minima ea, a praesentium saepe nihil maxime quod esse numquam explicabo eligendi.</p>
<ul>
<li><a href=""><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</figcaption>
</figure>
<h4>Jessie Barnett</h4>
<p>UI/UX Designer</p>
</div> /.team-member
</div> /.col-md-4
<div class="col-md-4">
<div class="team-member">
<figure>
<img src="assets/images/terry-fletcher.jpg" alt="" class="img-responsive">
<figcaption>
<p>Temporibus dolor, quisquam consectetur molestias, veniam voluptatum. Beatae alias omnis totam.</p>
<ul>
<li><a href=""><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href=""><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</figcaption>
</figure>
<h4>Terry Fletcher</h4>
<p>Web Developer</p>
</div> /.team-member
</div> /.col-md-4
</div> /.row
</div> /.container
</div> /.row
</div> /.container
</section> /.our-team -->
<!-- Portfolio/Gallery Section
<section id="portfolio" class="portfolio content-section parallax">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>Investors</h2>
<h3 class="caption white" style="color: #fff">
<b>Looking forward to invest in innovative ideas and new technology products?</b><br>
Yes? Then come and join PING FOUNDATION! Be a part of technical revolution.
With our first project Yeng being a successful one, we have a handful of innovative open source projects in the queue for you to invest on and be a part of the innovative products that the generation needs.
</h3>
</div> /.col-md-12
</div> /.row
</div> /.container
<div class="container project-container text-center">
<div class="recent-project-carousel owl-carousel owl-theme popup-gallery">
<div class="item recent-project">
<img src="assets/images/gallery/project-one.jpg" alt="">
<div class="project-info">
<h3>Lakeview Inc.</h3>
<ul class="project-meta">
<li><a href="#">Website Design</a></li>
</ul>
</div> /.project-info
<div class="full-project">
<a href="assets/images/gallery/project-one_xl.jpg" title="Lakeview Inc. | Website Design">View project <i class="fa fa-chevron-right"></i></a>
</div> /.full-project
</div> /.item
<div class="item recent-project">
<img src="assets/images/gallery/project-two.jpg" alt="">
<div class="project-info">
<h3>Adam Productions</h3>
<ul class="project-meta">
<li><a href="#">App Design</a></li>
</ul>
</div> /.project-info
<div class="full-project">
<a href="assets/images/gallery/project-two_xl.jpg" title="Adam Productions | App Design">View project <i class="fa fa-chevron-right"></i></a>
</div> /.full-project
</div> /.item
<div class="item recent-project">
<img src="assets/images/gallery/project-three.jpg" alt="">
<div class="project-info">
<h3>Doe Associates</h3>
<ul class="project-meta">
<li><a href="#">Branding</a></li>
</ul>
</div> /.project-info
<div class="full-project">
<a href="assets/images/gallery/project-three_xl.jpg" title="Doe Associates | Branding">View project <i class="fa fa-chevron-right"></i></a>
</div> /.full-project
</div> /.item
<div class="item recent-project">
<img src="assets/images/gallery/project-four.jpg" alt="">
<div class="project-info">
<h3>Omega Corporation</h3>
<ul class="project-meta">
<li><a href="#">App Design</a></li>
</ul>
</div> /.project-info
<div class="full-project">
<a href="assets/images/gallery/project-four_xl.jpg" title="Omega Corporation | App Design">View project <i class="fa fa-chevron-right"></i></a>
</div> /.full-project
</div> /.item
</div> /.recent-project-carousel
<div class="customNavigation project-navigation text-center">
<a class="btn-prev"><i class="fa fa-angle-left fa-2x"></i></a>
<a class="btn-next"><i class="fa fa-angle-right fa-2x"></i></a>
</div> /.project-navigation
</div> /.container
</section> /.portfolio -->
<!-- Our clients
<section id="clients" class="our-clients content-section text-center">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Our clients</h2>
<h3 class="caption white">Decent listing with your clients. Fully customizable and ready to use in any subpages as you want. Responsive for any numbers of clients in this section.</h3>
</div> /.col-md-12
</div> /.row
<div class="row client-slider">
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/sony-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/nike-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/paramount-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/microsoft-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/citibank-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/fedex-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/sony-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/nike-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/paramount-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/microsoft-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/citibank-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
<div class="item col-xs-4 col-md-2 i">
<a href="#" title="#">
<img src="assets/images/fedex-logo.png" class="img-responsive">
</a>
</div> /.col-xs-4
</div> /.row
</div> /.container
</section> /.our-clients -->
<!-- Testimonials Section
<section class="testimonials content-section">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>Rated 4.8 out of 5</h2>
<h3 class="caption gray">Here's what our clients have to say</h3>
</div> /.col-md-12
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="client-testimonials owl-carousel owl-theme">
<div class="item">
<p class="speech">Hallooou is the best HTML5 template we have EVER purchased. It's the perfect solution for our business. The unlimited customization helps us get things done quickly and efficiently.</p>
<div class="client-info">
<img src="assets/images/gina_stone-client_pic.jpg" />
<h4>Gina Stone</h4>
<span>Adam Productions</span>
</div>
</div> /.item
<div class="item">
<p class="speech">This is the real deal! Very easy to use. Thanks to Hallooou HTML5 template, we've just launched our new website! I couldn't have asked for more than this. Definitely worth the investment.</p>
<div class="client-info">
<img src="assets/images/john_doe-client_pic.jpg" />
<h4>John Doe</h4>
<span>Doe Associates</span>
</div>
</div> /.item
<div class="item">
<p class="speech">We're loving it. The best on the net! I strongly recommend Hallooou HTML5 template to everyone interested in running a successful business! Hallooou HTML5 template has really helped our business.</p>
<div class="client-info">
<img src="assets/images/dana_hill-client_pic.jpg" />
<h4>Dana Hill</h4>
<span>Lakeview Inc.</span>
</div>
</div> /.item
</div> /.client-testimonials
</div> /.col-md-8
</div> /.row
</div> /.container
</div> /.row
</div> /.container
</section> /#testimonials -->
<!-- Call to action - one section -->
<section id="sponsors" class="cta-one-section content-section alt-bg-light">
<div class="container">
<div class="row text-center">
<div class="col-md-6">
<h2>Event Sponsors</h2>
<!--<h3 class="caption gray">Optional title for call to action</h3>-->
<p>We have numerous event sponsors in the main cities of India, extending all the resources
necessary while holding the idea pitching events, products launching event so on and so forth.
We are also happy to take free sessions in colleges and companies on supporting us necessary
space and resources.
</p>
<!-- <a href="#" class="btn btn-default btn-lg">Questions?</a>
<a href="#" class="btn btn-outlined btn-lg">Contact us</a>-->
</div><!-- /.col-md-6 -->
<div class="col-md-6">
<h2>Technical Support</h2>
<p>Right from the beginning, PING FOUNDATION have had great technical support from Big-name
companies in the industry.
And we are continually receiving many more as well. Apart from the goodwill, sponsors get worthy
visibility that benefits them in future as well.
</p>
</div><!-- /.col-md-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.cta-one-section -->
<!-- Counter Section
<section id="counter" class="counter-section content-section parallax">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2 class="white">Our Achievements</h2>
<h3 class="caption">Ultricestum urna litora sit sed praesent condimentum eu a et scelerisque</h3>
</div> /.col-md-12
<div class="col-sm-3 counter-wrap">
<strong><span class="timer">350</span>+</strong>
<span class="count-description">Clients Worked With</span>
</div> /.col-sm-3
<div class="col-sm-3 counter-wrap">
<strong><span class="timer">250</span>+</strong>
<span class="count-description">Nominations</span>
</div> /.col-sm-3
<div class="col-sm-3 counter-wrap">
<strong><span class="timer">160</span>+</strong>
<span class="count-description">Awards Won</span>
</div> /.col-sm-3
<div class="col-sm-3 counter-wrap">
<strong><span class="timer">1650</span>+</strong>
<span class="count-description">Cups Of Coffee</span>
</div> /.col-sm-3
</div> /.row
</div> /.container
</section> /.counter-section -->
<!-- Call to action - two section
<section class="cta-two-section">
<div class="container">
<div class="row">
<div class="col-sm-9">
<h3>Have an idea?</h3>
<p>We’re here to help you manage your work</p>
</div>
<div class="col-sm-3">
<a href="#" class="btn btn-overcolor">Get in touch</a>
</div>
</div> /.row
</div> /.container
</section> /.cta-two-section -->
<!-- Portfolio/Gallery Section as Video Testimonial-->
<section id="testimonials" class="portfolio content-section parallax" style="background: url(assets/images/portfolio_bg.jpg) 50% 0 no-repeat scroll;">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>Testimonial Videos</h2>
<!-- <h3 class="caption white"></h3>-->
</div><!-- /.col-md-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
<div class="container project-container text-center">
<div class="recent-project-carousel owl-carousel owl-theme popup-gallery">
<div class="">
<iframe width="95%" height="200px" src="https://www.youtube.com/embed/0JX-Jf7aSRo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><!-- /.item1 -->
<div>
<iframe width="95%" height="200px" src="https://www.youtube.com/embed/DoxloKevC3c" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><!-- /.item2 -->
<div>
<iframe width="95%" height="200px" src="https://www.youtube.com/embed/uHBU-I530sU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><!-- /.item3 -->
<div>
<iframe width="95%" height="200px" src="https://www.youtube.com/embed/ekJMD6GWQIU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><!-- /.item4 -->
<div>
<iframe width="95%" height="200px" src="https://www.youtube.com/embed/q--LWQx8JQY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><!-- /.item5 -->
<div>
<iframe width="95%" height="200px" src="https://www.youtube.com/embed/L67zNMv3yoU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><!-- /.item6 -->
</div><!-- /.recent-project-carousel -->
<div class="customNavigation project-navigation text-center">
<a class="btn-prev"><i class="fa fa-angle-left fa-2x"></i></a>
<a class="btn-next"><i class="fa fa-angle-right fa-2x"></i></a>
</div><!-- /.project-navigation -->
</div><!-- /.container -->
</section><!-- /.portfolio as Video Testimonial -->
<!-- Contact section -->
<section id="join" class="contact content-section no-bottom-pad">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>Join Us</h2>
<h3 class="caption gray">Want to share your views? Join the team here? There will be bunch of
questions that would come to your mind. Don’t mind we have the solution on how you can clear
them.
We always welcome the brilliant minds out there to interact with us.
So, come, join PING FOUNDATION ! Let’s help make the world a better place by driving the youth
towards excellence .
</h3>
</div><!-- /.col-md-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
<div class="container">
<div class="row form-container">
<div class="col-md-8 contact-form">
<h3>Drop us a line</h3>
<form class="google-form" id="contactForm" method="post" name="google-form" action="">
<div class="form-group">
<input type="text" class="form-control" id="name" name="name" placeholder="Your Name..."
value="" required>
</div>
<div class="form-group">
<input type="email" class="form-control" id="email" name="email" placeholder="Your email..."
value="" required>
</div>
<div class="form-group">
<input type="phone" class="form-control" id="phone" name="mobile"
placeholder="Your phone..." value="" required>
</div>
<div class="form-group">
<textarea class="form-control" rows="4" name="description" placeholder="Description..."
required></textarea>
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-default"><i
class="fa fa-paper-plane fa-fw"></i> Send</button>
</div>
</form>
</div><!-- /.contact-form -->
<!-- <div class="col-md-4 contact-address">
<h3>Our address</h3>
<p>76 Ninth Ave,
<br />New York, NY 10011,