-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1707 lines (1421 loc) · 72.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 | IIT Kanpur</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">
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="icon" href="favicon.png" 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>
</script>
</head>
<body id="top" onload="setInterval(fun,3610)">
<!-- header
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">ECell</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>Close</span>
</a>
<h3>ECell.</h3>
<ul class="nav-list">
<li>
<a class="smoothscroll" href="#about" title="">About</a>
</li>
<li>
<a class="smoothscroll" href="#services" title="">Events</a>
</li>
<li>
<a target="_blank" href="https://www.ecelliitk.org/esummit" title="">E-Summit'19</a>
</li>
<li>
<a target="_blank" href="https://www.ecelliitk.org/sip" title="">SIP 2020</a>
</li>
<li>
<a target="_blank" href="https://www.ecelliitk.org/upstart" title="">Upstart'19</a>
</li>
<li>
<a target="_blank" href="https://www.ecelliitk.org/Esquare" title="">Esquare'20</a>
</li>
<li>
<a target="_blank" href="https://caportal.ecelliitk.org/" title="">CA Portal</a>
</li>
<li>
<a target="_blank" href="https://www.ecelliitk.org/ca" title="">CA Program</a>
</li>
<li>
<a class="smoothscroll" href="#contact" title="">Contact Us</a>
</li>
</ul>
<ul class="header-social-list">
<li class="animate-intro">
<a href="https://facebook.com/ecelliitk">
<i class="fab fa-facebook-square" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://m.me/ecelliitk">
<i class="fab fa-facebook-messenger" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.linkedin.com/company/entrepreneurship-cell-iit-kanpur/">
<i class="fab fa-linkedin" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.instagram.com/ecelliitk/">
<i class="fab fa-instagram" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.youtube.com/channel/UCvxavCg0UhXq6oKkrBHc9zQ">
<i class="fab fa-youtube" style="font-size: 1.15em"></i>
</a>
</li>
<li>
<a href="https://twitter.com/ecelliitk">
<i class="fab fa-twitter" style="font-size: 1.15em"></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>
<h1 class="animate-intro">
Entrepreneurship Cell
<br> IIT Kanpur
</h1>
<div class="more animate-intro">
<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">
<a href="https://facebook.com/ecelliitk">
<i class="fab fa-facebook-square" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://m.me/ecelliitk">
<i class="fab fa-facebook-messenger" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.linkedin.com/company/entrepreneurship-cell-iit-kanpur/">
<i class="fab fa-linkedin" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.instagram.com/ecelliitk/">
<i class="fab fa-instagram" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://twitter.com/ecelliitk">
<i class="fab fa-twitter" style="font-size: 1.15em"></i>
</a>
</li>
<li class="animate-intro">
<a href="https://www.youtube.com/channel/UCvxavCg0UhXq6oKkrBHc9zQ">
<i class="fab fa-youtube" style="font-size: 1.15em"></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
================================================== -->
<section id="about">
<div class="row about-wrap">
<div class="col-full">
<!-- <div class="about-profile-bg"></div> -->
<div class="intro">
<h3 class="animate-this">About Us</h3>
<p class="lead animate-this">
<span>E-Cell, IIT Kanpur</span> 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, seeding funds and angel investors to
transform the newly proposed ideas into successful start-ups.
</p>
<div class='onesignal-customlink-container'></div>
</div>
</div>
<!-- end col-full -->
</div>
<!-- end about-wrap -->
</section>
<!-- end about -->
<!-- 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/esummit/upstart/" class="icon">
<i class="icon-arrow-up"></i>
</a>
<div class="service-content">
<a href="https://www.ecelliitk.org/esummit/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">
<span class="icon">
<i class="icon-user-add"></i>
</span>
<div class="service-content">
<h3 class="h05">StartUp Master Class</h3>
<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">
<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 -->
<!-- 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>
</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/esummit/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 -->
<!-- Testimonials Section
================================================== -->
<section id="testimonials">
<!-- <div class="row">
<div class="col-twelve">
<h2 class="animate-this">What They Say About Us.</h2>
</div>
</div>
<div class="row flex-container">
<div id="testimonial-slider" class="flex-slider animate-this">
<ul class="slides">
<li>
<p>
Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is
great work. And the only way to do great work is to love what you do. If you haven't found it yet, keep looking. Don't
settle. As with all matters of the heart, you'll know when you find it.
</p>
<div class="testimonial-author">
<img src="images/avatars/user-02.jpg" alt="Author image">
<div class="author-info">
Steve Jobs
<span class="position">CEO, Apple.</span>
</div>
</div>
</li>
<li>
<p>
This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis
bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus
a sit amet mauris.
</p>
<div class="testimonial-author">
<img src="images/avatars/user-03.jpg" alt="Author image">
<div class="author-info">
John Doe
<span>CEO, ABC Corp.</span>
</div>
</div>
</li>
</ul>
</div>
</div> -->
</section>
<!-- end testimonials -->
<!-- stats ================================================== -->
<!-- <section id="clients">
<div class="row animate-this">
<div class="col-twelve">
<div class="client-lists owl-carousel">
<div>
<img src="images/clients/mozilla.png" alt="">
</div>
<div>
<img src="images/clients/bower.png" alt="">
</div>
<div>
<img src="images/clients/codepen.png" alt="">
</div>
<div>
<img src="images/clients/envato.png" alt="">
</div>
<div>
<img src="images/clients/firefox.png" alt="">
</div>
<div>
<img src="images/clients/grunt.png" alt="">
</div>
<div>
<img src="images/clients/evernote.png" alt="">
</div>
<div>
<img src="images/clients/github.png" alt="">
</div>
<div>
<img src="images/clients/joomla.png" alt="">
</div>
<div>
<img src="images/clients/jQuery.png" alt="">
</div>
<div>
<img src="images/clients/wordpress.png" alt="">
</div>
</div>
</div>
</div>
</section> -->
<!-- end clients -->
<!-- contact ================================================== -->
<section id="contact">
<div class="overlay"></div>
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<h3>Contact</h3>
<h1>Our Team</h1>
<p class="lead">
Contact us for any queries, questions, or ideas.
</p>
<!--
<div class="row contact-content">
<div class="col-seven tab-full animate-this">
<h5>Send Us A Message</h5>
<form name="contactForm" id="contactForm" method="post">
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="">
</div>
<div class="row">
<div class="col-six tab-full">
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="">
</div>
</div>
<div class="col-six tab-full">
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="">
</div>
</div>
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10" cols="50" required=""></textarea>
</div>
<div class="form-field">
<button class="submitform">Submit</button>
<div id="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</form>
<div id="message-warning"></div>
<div id="message-success">
<i class="fab fa-check"></i>Your message was sent, thank you!
<br>
</div>
</div>
<div class="col-four tab-full contact-info end animate-this">
<h5>Contact Information</h5>
<div class="cinfo">
<h6>Where to Find Us</h6>
<p>
312 - IME
<br/> Indian Institute of Technology
<br/> Kanpur, Uttar Pradesh 208016
<br/>
</p>
</div>
<div class="cinfo">
<h6>Email Us At</h6>
<p>
connect@ecelliitk.com
<br/> ecell@iitk.ac.in
</p>
</div>
<div class="cinfo">
<h6>Call Us At</h6>
<p>
Mobile: (+91) 7376304919
<br> Mobile: (+91) 8319829976
</p>
</div>
</div>
</div> -->
</div>
<br>
<div class="services-list offset_16 block-1-2 block-tab-full group">
<div class="bgrid service-item animate-this">
<div class="profile-card">
<div class="profile-img">
<img data-src="./images/profile/khushboo.jpg" style="height:24rem;width:22.5rem;" alt="Team Image" class="lazyload" />
</div>
<div class="profile-content">
<a href="tel:9650913301">
<h2 class="title">9650913301</h2>
</a>
<ul class="social-link">
<li>
<a href="https://www.facebook.com/khushboo.sachdeva.1804" class="fab fa-facebook"
target="_blank"></a>
</li>
<li>
<a href="mailto:Khushbus@iitk.ac.in " class="fa icon-mail"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/khushbu21/"
class="fab fa-linkedin" target="_blank"></a>
</li>
</ul>
</div>
</div>
<h3 class="line-height-2">Khushboo <br>Sachdeva </h3>
<h4 class="line-height-2">Overall
<br>Coordinator</h4>
</div>
<!-- end bgrid -->
<div class="bgrid service-item animate-this">
<div class="profile-card">
<div class="profile-img">
<img data-src="./images/profile/Tanmay.jpg" style="height:24rem;width:24rem;" alt="Team Image" class="lazyload" />
</div>
<div class="profile-content">
<a href="tel:9991166118 ">
<h2 class="title">9991166118</h2>
</a>
<ul class="social-link">
<li>
<a href="https://www.facebook.com/tanmayg30" class="fab fa-facebook"
target="_blank"></a>
</li>
<li>
<a href="mailto:tanmayg@iitk.ac.in" class="fa icon-mail"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/tanmayg/"
class="fab fa-linkedin" target="_blank"></a>
</li>
</ul>
</div>
</div>
<h3 class="line-height-2">Tanmay<br> Gupta</h3>
<h4 class="line-height-2">Overall
<br>Coordinator</h4>
</div>
<!-- end bgrid -->
</div>
<br>
<div class="services-list block-1-3 block-tab-full group">
<div class="bgrid service-item animate-this">
<div class="profile-card">
<div class="profile-img">
<img data-src="./images/profile/Hem_pic1.jpeg" style="height:25rem;width:24rem;" alt="Team Image" class="lazyload" />
</div>
<div class="profile-content">
<a href="tel:9820013228">
<h2 class="title">9820013228</h2>
</a>
<ul class="social-link">
<li>
<a href="https://m.facebook.com/hem.shah.902?ref=bookmarks" class="fab fa-facebook"
target="_blank"></a>
</li>
<li>
<a href="mailto:hemshah@iitk.ac.in" class="fa icon-mail"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/hem-shah-0587401a9"
class="fab fa-linkedin"></a>
</li>
</ul>
</div>
</div>
<h3 class="line-height-2">Hem<br> Shah</h3>
<h4 class="line-height-2">Manager
<br>Web Development</h4>