forked from E-Cell-VSSUT/Ecell-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2206 lines (1838 loc) · 95.5 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="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<script id='pixel-script-poptin' src='https://cdn.popt.in/pixel.js?id=5316b52bfb719' async='true'></script>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>E-Cell | VSSUT BURLA</title>
<meta name="description" content="Entrepreneurship Cell, IIT Kanpur aims to induce an entrepreneurial mindset into the students and air an innovative streak in them. We are here to water the ‘Ideas’ in the bud and help them bloom into impactful endeavors through networking student enterprises from campus to incubators.">
<meta name="author" content="ECell">
<meta name="keywords" content="E-Cell, Ecell, IITK, IIT, Entrepreneurship, Cell, IIT Kanpur, E Cell Indian Institute of technology Kanpur">
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<!---Open Graph metas for social media=======================================-->
<meta property="og:title" content="Entrepreneurship Cell IIT Kanpur" />
<meta property="og:image" content="/images/social_image.jpg" />
<meta property="og:url" content="https://www.ecelliitk.org/" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Entrepreneurship Cell, IIT Kanpur aims to induce an entrepreneurial mindset into the students and air an innovative streak in them. We are here to water the Ideas in the bud and help them bloom into impactful endeavors through networking student enterprises from campus to incubators."
/>
<meta name="twitter:title" content="Entrepreneurship Cell IIT Kanpur" />
<meta name="twitter:image" content="/images/social_image.jpg" />
<meta property="twitter:url" content="https://www.ecelliitk.org/" />
<meta property="twitter:description" content="Entrepreneurship Cell, IIT Kanpur aims to induce an entrepreneurial mindset into the students and air an innovative streak in them. We are here to water the Ideas in the bud and help them bloom into impactful endeavors through networking student enterprises from campus to incubators."
/>
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.min.css">
<link rel="stylesheet" href="css/vendor.min.css">
<link rel="stylesheet" href="css/main.css?ver=1.1">
<link rel="stylesheet" href="css/font-awesome/css/all.css">
<link rel="stylesheet" href="css/testimonial.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/font-awesome.min.css">
<link rel="stylesheet" href="css/wings.css">
<link rel="stylesheet" href="css/ourstar.css">
<link rel="stylesheet" href="css/gallery.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/hide.css">
<link rel="stylesheet" href="css/About.css">
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-4449283336902691",
enable_page_level_ads: true
});
</script> -->
<meta name="google-site-verification" content="vSk5sgiuAQ0BaCaew4zBm31mj7y67yxbMIe9tAh3x7k" />
<link rel="manifest" href="/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: "bf1e1a11-7956-47d2-8a44-673e33c8e5c5",
});
});
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-155541127-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-155541127-1');
<
script id = 'pixel-script-poptin'
src = 'https://cdn.popt.in/pixel.js?id=879953ffe8123'
async = 'true' / >
</script>
</head>
<body id="top" onload="setInterval(fun,3610)">
<!-- header
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">E-Cell</a>
</div>
<a id="header-menu-trigger" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
<nav id="menu-nav-wrap">
<a href="#0" class="close-button" title="close">
<span></span>
</a>
<h3>E-Cell.</h3>
<ul class="nav-list">
<li>
<a class="smoothscroll" href="#about" title="">About</a>
</li>
<li>
<a class="smoothscroll" href="#services" title="">Wings</a>
</li>
<li>
<a class="smoothscroll" href="#startups" title="">Start-ups</a>
</li>
<li>
<a class="smoothscroll" href="#events" title="">Events</a>
</li>
<li>
<a class="smoothscroll" href="#testimonial" title="">Testimonials</a>
</li>
<li>
<a target="_blank" href="#team" title="">Team</a>
</li>
<li>
<a class="smoothscroll" href="contact" title="">Contact Us</a>
</li>
<li>
<a target="_blank" href="#" title="">Team</a>
</li>
</ul>
<ul class="header-social-list">
<li class="animate-intro">
<a href="https://www.facebook.com/ecellvssut">
<i class="fab fa-facebook-square fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.messenger.com/t/112337470160113">
<i class="fab fa-facebook-messenger fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.linkedin.com/company/ecellvssut/mycompany/">
<i class="fab fa-linkedin fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.instagram.com/ecellvssut/">
<i class="fab fa-instagram fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.youtube.com/channel/UCrUHoXLCItvfP9Xa_KITwvg">
<i class="fab fa-youtube fa-lg"></i>
</a>
</li>
<li>
<a href="https://twitter.com/ecellvssut">
<i class="fab fa-twitter fa-lg"></i>
</a>
</li>
</ul>
</nav>
<!-- end #menu-nav-wrap -->
</header>
<!-- end header -->
<!-- home
================================================== -->
<section id="home">
<div class="overlay"></div>
<div class="home-content-table">
<div class="home-content-tablecell">
<div class="row">
<div class="col-twelve">
<h3 class="animate-intro">
Ideate. Innovate. Incubate.
</h3>
<h4 class="animate-intro homepage-quote">Many dream of an empire but an entrepreneur builds it!</h4>
<h1 class="animate-intro big-title">
Entrepreneurship Cell
<br> VSSUT, Burla
</h1>
<div class="more animate-intro explore-btn">
<a class="smoothscroll button stroke" href="#about">
Explore
</a>
</div>
<!-- <div class="animate-intro">
<a href="https://www.ecelliitk.org/esummit" target="_blank" id="butbor">
<p id="but">
Register for E-Summit'19
<i class="fa fa-share"></i>
</p>
</a>
</div> -->
</div>
<!-- end col-twelve -->
</div>
<!-- end row -->
</div>
<!-- end home-content-tablecell -->
</div>
<!-- end home-content-table -->
<ul class="home-social-list">
<li class="animate-intro home-facebook-icon">
<a href="https://www.facebook.com/ecellvssut">
<i class="fab fa-facebook-square fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.messenger.com/t/112337470160113">
<i class="fab fa-facebook-messenger fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.linkedin.com/company/ecellvssut/mycompany/">
<i class="fab fa-linkedin fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.instagram.com/ecellvssut/">
<i class="fab fa-instagram fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://twitter.com/ecellvssut">
<i class="fab fa-twitter fa-lg"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.youtube.com/channel/UCrUHoXLCItvfP9Xa_KITwvg">
<i class="fab fa-youtube fa-lg"></i>
</a>
</li>
</ul>
<!-- end home-social-list -->
<div class="scrolldown">
<a href="#about" class="scroll-icon smoothscroll">
Scroll Down
<i class="icon-arrow-right" aria-hidden="true"></i>
</a>
</div>
</section>
<!-- end home -->
<!-- about
================================================== -->
<div class="grid-container intro about-wrap" id="about">
<div class="about-head">
<h3 class="Head">About Us</h3>
</div>
<div class="about lead">
<div class="column-1">
<p><a href="#"><u>Entrepreneurship Cell(E-Cell)</u></a>is a non-profit organisation run by students of VSSUT, Odisha. We create awareness among the students about Entrepreneurship through our various programs like workshops, speaker session
and other such events. We support the upcoming Entrepreneurs by providing them necessary resources such mentors, consultancy, seed fund and networking.</p>
</div>
<!-- <div class="line"></div> -->
<div class="column-2">
<p><a href="#"><u>E-Cell VSSUT</u></a>, Burla is mainly targeted for aspiring entrepreneurs and people and students curious to know more about entrepreneurship. It conducts major events hosting brilliant minds from all across the country
for discourse and interaction. This will help all of them to connect, network, learn, grow, and develop both personally and professionally.</p>
</div>
</div>
</div>
<!-- HORIZONTAL TIMELINE CODE -->
<section class="timeline">
<div class="timeline-head">
<h3 id="time-head">OUR JOURNEY SO FAR...</h3>
</div>
<div class="timeline-wrapper clearfix">
<div class="timeline-content-day">
<div class="timeline-line"></div>
<div class="timeline-content-item active" data-timeline="hour-8">
<span class='year'>2013</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/preloader.gif">
<span>E-Cell Established</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-9">
<span class='year'>2018</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/Tedx.png">
<span>TedX_VSSUT</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-10">
<span class='year'>2019</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/Satt.png">
<span>S.A.T.T.</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-11">
<span class='year'>2019</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/Innobuzz.png">
<span>Innobuzz 1.0</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-12">
<span class='year'>2019</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/Tedx.png">
<span>TedX_VSSUT</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-13">
<span class='year'>2020</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/Interno.png">
<span>Interno Formed</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-14">
<span class='year'>2020</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/East.png">
<span>E.A.S.T. Formed</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-15">
<span class='year'>2020</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/esummit.png">
<span>E-Summit</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-16">
<span class='year'>2020</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/Innobuzz.png">
<span>Innobuzz 2.0</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="hour-17">
<span class='year'>2021</span>
<div class="timeline-content-item-reveal">
<a href="#">
<img src="images/Timeline/ipl_auction.png">
<span>Mock IPL Auction</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!--============================================
VERTICAL TIMELINE -->
<div class="vertical-timeline-head">
<h3 id="time-head">OUR JOURNEY SO FAR...</h3>
</div>
<div class="vertical-timeline">
<h2 class="vertical-timeline__item vertical-timeline__item--year">2013</h2>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">E-Cell Established</h3>
</div>
<h2 class="vertical-timeline__item vertical-timeline__item--year">2018</h2>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">TedX VSSUT</h3>
<p class="vertical-timeline__blurb">Edition-1</p>
</div>
<h2 class="vertical-timeline__item vertical-timeline__item--year">2019</h2>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">S.A.T.T.</h3>
</div>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">Innobuzz 1.0</h3>
</div>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">TedX Vssut</h3>
<p class="vertical-timeline__blurb">Edition-2</p>
</div>
<h2 class="vertical-timeline__item vertical-timeline__item--year">2020</h2>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">Interno</h3>
</div>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">EAST</h3>
</div>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">E-Summit</h3>
</div>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">Innobuzz 2.0</h3>
</div>
<h2 class="vertical-timeline__item vertical-timeline__item--year">2021</h2>
<div class="vertical-timeline__item">
<h3 class="vertical-timeline__title">IPL Auction</h3>
</div>
</div>
<!-- about
================================================== -->
<!-- <section id="services">
<div class="overlay">
</div>
<div class="gradient-overlay"></div>
<div class="row section-intro with-bottom-sep animate-this">
<div class="col-full">
<h3>Events</h3>
<h1>What We Do.</h1>
<p class="lead">E-Cell organises a variety of events throughout the year to promote entrepreneurial activities in and around the campus. Our annual
<a href="https://www.ecelliitk.org/esummit/" style="color: orange"> E-Summit </a> witnesses huge participation from all over India. Events like TEDx and StartUp Master Class take the learning to a whole new level. E-Cell also conducts
various lectures and workshops focussed at budding entrepreneurs. StartUp Internship Programme helps IITK students land internships in start-ups and get to know their working in greater depth.
</p>
</div> -->
<!-- end col-full -->
<!-- </div> -->
<!-- end row -->
<!-- <div class="row services-content">
<div class="services-list block-1-2 block-tab-full group">
<div class="bgrid service-item animate-this">
<a href="https://www.ecelliitk.org/esummit/" class="icon">
<i class="icon-leaf"></i>
</a>
<div class="service-content">
<a href="https://www.ecelliitk.org/esummit/">
<h3 class="h05">E-Summit</h3>
</a>
<p class="events-desc">E-Summit is an annual flagship event of IIT Kanpur effectuated with the intention to foster entrepreneurial initiatives and activities in the campus to accomplish IIT Kanpur's mandate of nurturing India's future technopreneurs.
Sharing of entrepreneurship endeavour and experiences, discussion of ideas and opportunities will be a profuse learning experience for the active leaders of entrepreneurship in the savant community who can then disperse these
ideas further.
</p>
</div>
</div> -->
<!-- end bgrid -->
<!-- <div class="bgrid service-item animate-this">
<span class="icon">
<a href="https://www.ecelliitk.org/tedx">
<i class="icon-light-bulb"></i>
</a>
</span>
<div class="service-content">
<a href="https://www.ecelliitk.org/tedx/">
<h3 class="h05">TEDx</h3>
</a>
<p class="events-desc">TED is a global set of conferences run by the private non-profit Sapling Foundation, under the slogan "Ideas Worth Spreading". TED was founded in 1984 as a one-off event; the annual conference series began in 1990. TEDx IIT Kanpur
is an independent initiative by Entrepreneurship Cell, IIT Kanpur, under the umbrella of TED, to organize versatile an annual talk series from several eminent speakers from the field of Technology, Entertainment and Design.
</p>
</div>
</div> -->
<!-- end bgrid -->
<!-- <div class="bgrid service-item animate-this">
<a href="https://www.ecelliitk.org/upstart/" class="icon">
<i class="icon-arrow-up"></i>
</a>
<div class="service-content">
<a href="https://www.ecelliitk.org/upstart/">
<h3 class="h05">UpStart</h3>
</a>
<p class="events-desc">An event that caters to the budding startups of our country, Upstart stands apart from the conventional Start-up Competition and 10-minute pitching - we strive to give our participants more than just the prize. The start-ups go
through multiple rounds of screening, which are essentially brainstorming sessions at different levels and face to face mentoring. Finalists get to develop their ideas and hone their business plans with a panel of mentors.
</p>
</div>
</div> -->
<!-- end bgrid -->
<!-- <div class="bgrid service-item animate-this">
<a href="https://startupmasterclass.in/" class="icon">
<i class="icon-user-add"></i>
</a> -->
<!-- <span class="icon">
<a href="https://startupmasterclass.in/" class="icon"></a>
<i class="icon-user-add"></i>
</span> -->
<!-- <div class="service-content">
<a href="https://startupmasterclass.in/">
<h3 class="h05">StartUp Master Class</h3>
</a>
<p class="events-desc">
In association with Alumni Association, IIT Kanpur, E-Cell organises StartUp Master Class, a highly enriching and enlightening platform for entrepreneurs, graced by many famous personalities. SMC is a unique format startup event “for Entrepreneurs, from
Entrepreneurs”. It brings together startups, mentors and investors to build interactions and strengthen the network within the entrepreneurial community.
</p>
</div>
</div> -->
<!-- <div class="bgrid service-item animate-this">
<span class="icon">
<i class="fa fa-briefcase"></i>
</span>
<div class="service-content">
<h3 class="h05">IBTC-2020 Program</h3>
<p class="events-desc">
DC Crackers in association with Ecell IIT Kanpur have come up with the Career Building event
and presents National Level Workshop Series: India's Biggest Training Championship-2020,
which is to be organized in most of the reputed colleges and Universities pan India.
<br>
To participate or register your college as a Zonal Centre or for any further information
contact: <br>
+91-9953135535, or shoot an email to convener@ibtcindia.com
or visit www.ibtcindia.com
</p>
</div>
</div> -->
<!-- <div class="bgrid service-item animate-this">
<a href="https://www.ecelliitk.org/sip/" class="icon">
<i class="fa fa-line-chart"></i>
</a> -->
<!-- <span class="icon">
<i class="fa fa-line-chart"></i>
</span> -->
<!-- <div class="service-content">
<a href="https://www.ecelliitk.org/sip/">
<h3 class="h05">Startup Internship Program</h3>
</a>
<p class="events-desc">
E-Cell, IIT Kanpur achieved great success with Startup Internship Program 2017-18 season with a total of 151 Startups that registered. The profiles included IT/Programming, Core, and Marketing/Business Development. The season saw recruitment from startups
like Invento Robotics,Ridlr, Dunzo, Pharmeasy, EarlySalary to name a few. The season witnessed a 73 % boom in the total internships offered than the previous year.
</p>
</div>
</div>
<div class="bgrid service-item animate-this">
<span class="icon">
<i class="fa fa-comments"></i>
</span>
<div class="service-content">
<h3 class="h05">Campus Hangouts</h3>
<p class="events-desc">
Hangouts is special interactive session specifically targeting the campus students. The session is like an informal discussion between campus junta and entrepreneurship oracles of varied arenas. It involves discussions and brainstorming on entrepreneurship
matters. Throughout the year multiple hangout sessions are organised.
</p>
</div>
</div> -->
<!-- <div class="bgrid service-item animate-this">
<span class="icon">
<i class="fa fa-graduation-cap"></i>
</span>
<div class="service-content">
<h3 class="h05">Ranjan Kumar Memorial Lecture Series</h3>
<p class="events-desc">
The Ranjan Kumar Memorial Lecture Series is supported by the IITK batch of 1986 in memory of
their batch-mate Mr. Ranjan Kumar. The previous year had Mr. Dheeraj Pandey, CEO of the
successful startup Nutanix as the keynote speaker for the talk held on
16th February.
</p>
</div>
</div> -->
<!-- end bgrid -->
<!-- </div> -->
<!-- end services-list -->
<!-- </div> -->
<!-- end services-content -->
<!-- </section> -->
<!-- end services -->
<!-- wings
================================================== -->
<section id="wings">
<div class="wings__header">
<h1>OUR WINGS</h1>
<span>What we do.</span>
</div>
<div class="wings__card--area">
<div class="wings__card wings--east">
<div class="wings__card--head">
<img class="wings__card--head--logo" src="images/wings/logo_east.png" alt="Entrepreneurship Accords and Startup growth Traffic">
</div>
<div class="wings__card--body">
<h2 class="wings__card--head--name">Entrepreneurship Accords and Startup growth Traffic</h2>
<p class="wings__card--body--desc">Collaborates with all other E-Cells to foster Entrepreneurship activities and enhance the prevalent startup culture.</p>
<div class="wings__card--body--icons">
<a href="" class="wings__social--icons"><i class="fas fa-globe fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-linkedin-in fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-twitter fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-facebook-f fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-instagram fa-lg"></i></a>
</div>
</div>
<!-- <div class="wings__card--curtain curtain--east"></div> -->
</div>
<div class="wings__card wings--interno">
<div class="wings__card--head">
<img class="wings__card--head--logo" src="images/wings/logo_interno.png" alt="InternO">
</div>
<div class="wings__card--body">
<h2 class="wings__card--head--name">InternO</h2>
<p class="wings__card--body--desc">InternO intends to provide students with internships in successful startups. We have proudly collaborated with 17 companies and counting for more.</p>
<div class="wings__card--body--icons">
<a href="" class="wings__social--icons"><i class="fas fa-globe fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-linkedin-in fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-twitter fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-facebook-f fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-instagram fa-lg"></i></a>
</div>
<!-- <div class="wings__card--curtain"></div> -->
</div>
</div>
<div class="wings__card wings--satt">
<div class="wings__card--head">
<img class="wings__card--head--logo" src="images/wings/logo_satt.png" alt="Startup Acceleration Think Tank">
</div>
<div class="wings__card--body">
<h2 class="wings__card--head--name">Startup Acceleration Think Tank</h2>
<p class="wings__card--body--desc">Start-up acceleration, development, enhancement programs and think tank to inoculate startup ideas.</p>
<div class="wings__card--body--icons">
<a href="" class="wings__social--icons"><i class="fas fa-globe fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-linkedin-in fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-twitter fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-facebook-f fa-lg"></i></a>
<a href="" class="wings__social--icons"><i class="fab fa-instagram fa-lg"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- end wings -->
<!-- portfolio
================================================== -->
<section id="portfolio">
<div class="intro-wrap">
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<h3>Witness the awesomeness</h3>
<h1>Gallery</h1>
<p class="lead">Ecell brings to its participants a host of events, ranging from immersive talks to exciting competitions! </p>
<div class="container-gallery">
<div class="photos fade">
<div class="numbertext">1 / 5</div>
<img src="https://source.unsplash.com/1600x900/?nature,rain" style="width:100%">
<div class="text">
<span>Event 1</span>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Consequatur cum quae reprehenderit facilis enim,.</p>
</div>
</div>
<div class="photos fade">
<div class="numbertext">2 / 5</div>
<img src="https://source.unsplash.com/1600x900/?nature,water" style="width:100%">
<div class="text">
<span>Event 1</span>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Consequatur cum quae reprehenderit facilis enim,.</p>
</div>
</div>
<div class="photos fade">
<div class="numbertext">3 / 5</div>
<img src="https://source.unsplash.com/1600x900/?nature,forest" style="width:100%">
<div class="text">
<span>Event 1</span>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Consequatur cum quae reprehenderit facilis enim,.</p>
</div>
</div>
<div class="photos fade">
<div class="numbertext">4 / 5</div>
<img src="https://source.unsplash.com/1600x900/?nature,forest" style="width:100%">
<div class="text">
<span>Event 1</span>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Consequatur cum quae reprehenderit facilis enim,.</p>
</div>
</div>
<div class="photos fade">
<div class="numbertext">5 / 5</div>
<img src="https://source.unsplash.com/1600x900/?nature,rain" style="width:100%">
<div class="text">
<span>Event 1</span>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Consequatur cum quae reprehenderit facilis enim,.</p>
</div>
</div>
<a class="previous" onclick="photoNumber(-1)">❮</a>
<a class="next" onclick="photoNumber(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="current(1)"></span>
<span class="dot" onclick="current(2)"></span>
<span class="dot" onclick="current(3)"></span>
<span class="dot" onclick="current(4)"></span>
<span class="dot" onclick="current(5)"></span>
</div>
</div>
</div>
<!-- end row section-intro -->
</div>
<!-- end intro-wrap -->
<!-- <div class="row portfolio-content">
<div class="col-twelve">
<div id="folio-wrap" class="bricks-wrapper"> -->
<!-- <div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/shutterbug.jpg" data-sub-html="#01">
<a href="#" class="overlay">
<img src="images/portfolio/shutterbug.jpg" alt="Shutterbug">
<div class="item-text">
<h3 class="folio-title">E-Summit</h3>
</div>
</a>
<a href="#" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> -->
<!-- end item-wrap -->
<!-- <div id="01" class='hide'>
<h4>E-Summit</h4>
<a href="https://www.ecelliitk.org/esummit/">Details</a>
</div>
</div> -->
<!-- end folio-item -->
<!-- <div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/skaterboy.png" data-sub-html="#05">
<a href="#" class="overlay">
<img src="images/portfolio/skaterboy.png" alt="Skateboy">
<div class="item-text">
<h3 class="folio-title">Workshops</h3>
</div>
</a>
<a href="#" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> -->
<!-- end item-wrap -->
<!-- <div id="05" class='hide'>
<h4>Workshops</h4> -->
<!-- <p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat
velit.
<a href="#">Details</a>
</p> -->
<!-- </div>
</div> -->
<!-- end folio-item -->
<!-- <div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/yellowwall.jpg" data-sub-html="#02">
<a href="#" class="overlay">
<img src="images/portfolio/yellowwall.jpg" alt="Shutterbug">
<div class="item-text">
<h3 class="folio-title">E-Summit</h3>
</div>
</a>
<a href="#" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> -->
<!-- end item-wrap -->
<!-- <div id="02" class='hide'>
<h4>E-Summit</h4>
<a href="https://www.ecelliitk.org/esummit/">Details</a>
</div>
</div> -->
<!-- end folio-item -->
<!-- <div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/architecture.jpeg" data-sub-html="#03">
<a href="#" class="overlay">
<img src="images/portfolio/architecture.jpeg" alt="Explore">
<div class="item-text">
<h3 class="folio-title">UpStart</h3>
</div>
</a>
<a href="#" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> -->
<!-- end item-wrap -->
<!-- <div id="03" class='hide'>
<h4>UpStart</h4>
<p>
<a href="https://www.ecelliitk.org/upstart/">Details</a>
</p>
</div>
</div> -->
<!-- end folio-item -->
<!-- <div class="brick folio-item">
<div class="item-wrap animate-this" data-src="./images/portfolio/minimalismo.jpg" data-sub-html="#04">
<a href="#" class="overlay">
<img src="images/portfolio/minimalismo.jpg" alt="Minimalismo">
<div class="item-text">
<h3 class="folio-title">In the News</h3>
</div>
</a>
<a href="#" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> -->
<!-- end item-wrap -->
<!-- <div id="04" class='hide'>
<h4>In the News</h4> -->
<!-- <p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat
velit.
<a href="#">Details</a>
</p> -->
<!-- </div>
</div> -->
<!-- end folio-item -->
<!-- <div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/salad.jpg" data-sub-html="#06">
<a href="#" class="overlay">
<img src="images/portfolio/salad.jpg" alt="Salad">
<div class="item-text">
<h3 class="folio-title">E-Summit</h3>
</div>
</a>
<a href="#" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> -->
<!-- end item-wrap -->
<!-- <div id="06" class='hide'>
<h4>E-Summit</h4> -->
<!-- <p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat
velit. -->
<!-- <a href="https://www.ecelliitk.org/esummit/">Details</a> -->
<!-- </p> -->
<!-- </div>
</div> -->
<!-- end folio-item -->
<!-- </div> -->
<!-- end folio-wrap -->
<!-- </div> -->
<!-- end twelve -->
<!-- </div> -->
<!-- end portfolio-content -->
</section>
<!-- end portfolio -->