-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
931 lines (755 loc) · 36.3 KB
/
index1.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
<!DOCTYPE html>
<!--[if lt IE 9 ]><html class="no-js oldie" 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>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<style>
.downfont {
font-family: 'Poppins';
}
.col-full {
font-family: 'Poppins';
</style>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>E-Cell, IIIT Guwahati</title>
<meta name="description" content="Ecell IIITG">
<meta name="author" content="IIITG">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/timeline.css">
<link rel="stylesheet" href="css/grid.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="icon.png" type="image/x-icon">
<link rel="icon" href="icon.png" type="image/x-icon">
</head>
<body id="top" oncontextmenu="return false;">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html" >
<img src="images/logo.png" alt="Homepage" style="height:150px;">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3>Navigation</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="events">Events</a></li>
<li><a class="smoothscroll" href="#works" title="works">Gallery</a></li>
<li><a class="smoothscroll" href="#clients" title="sponsors">Sponsors</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
<ul class="header-nav__social">
<li>
<a href="https://www.facebook.com/ecell.iiitguwahati/"target="_blank" ><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com/iiitghy"target="_blank"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/ecell.iiitguwahati/"target="_blank"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<!--particles-->
<div id="particles-js"></div>
<script type="text/javascript" src="js/particles.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<!-- end of particles-->
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1 style="color:black">
Welcome to <span style="color:#db5050">E-Cell, IIITG</span>
</h1>
<h3>We are a creative group of people promoting entreprenuership.</h3>
<div class="home-content__buttons">
<a href="#about" class="smoothscroll btn btn--stroke">
More About Us
</a>
</div>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
<div class="home-content__line"></div>
<!-- end home-content -->
</div>
<ul class="home-social" style="color:black">
<li>
<a href="https://www.facebook.com/ecell.iiitguwahati/" target="_blank" ><i class="fa fa-facebook" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/iiitghy" target="_blank" ><i class="fa fa-twitter" aria-hidden="true"></i><span>Twiiter</span></a>
</li>
<li>
<a href="https://www.instagram.com/ecell.iiitguwahati/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
</ul>
</section> <!-- end s-home -->
<!-- end home-social -->
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">Hello There</h3>
<h1 class="display-1 display-1--light">We Are E-Cell, IIITG</h1>
</div>
</div> <!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full" >
<p >
<b>E-CELL IIITG</b> is a body that encourages the students of Indian Institute of Information Technology, in becoming entrepreneurs. We help the students, in making their ideas a reality. We support the students in shaping their start-up and getting them close to many entrepreneurs for making this journey of “learning to be an entrepreneur ” a successful one. The basic concept of our entrepreneurship cell is to give a basic insight into the world of entrepreneurship and provide a helping hand in any way possible to the interested.
</p>
</div>
<!-- end about-desc -->
<!--The countdown section.....................-->
<!-- <div class="downfont">
<div id="clock"></div>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="js/countdown.js"></script>
<script type="text/javascript">
$('#clock').countdown('2019/3/23',function(event){
var $this= $(this).html(event.strftime(''
+'<div><span>%w</span><span>Weeks</span></div>'
+'<div><span>%d</span><span>Days</span></div>'
+'<div><span>%H</span><span>Hours</span></div>'
+'<div><span>%M</span><span>Min</span></div>'
+'<div><span>%S</span><span>Sec</span></div>'
))
})
</script>
</div>
--End of countdown section..................-->
</div>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-right">
<div class="col-block stats__col ">
<div class="stats__count">4</div>
<h5>Events</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">760</div>
<h5>Participants</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">420</div>
<h5>Lecture Minutes</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">4</div>
<h5>Speakers</h5>
</div>
</div> <!-- end about-stats -->
<div class="about__line"></div>
</section> <!-- end s-about -->
<!-- services
================================================== -->
<section id='services' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Events</h3>
<h1 class="display-2">We’ve got everything you need to launch and grow your ideas</h1>
</div>
</div> <!-- end section-header -->
<!-- ========================
THIS IS EVENT BOX
======================== -->
<div class="box">
<!-- newest event on the top -->
<!-- ------------------------- -->
<div class="cardbox" data-aos="fade-up">
<div class="card1">
<div class="date">7 April 2019</div>
<img src="images/events/inizio.jpg" class="image">
</div>
<div class="card2">
<div class="content">
<div class="topic">INIZIO</div>
<div class="about">
While definitions of entrepreneurship typically focus on the launching and running of businesses.Entrepreneurship has been described as the "capacity and willingness to develop, organize and manage a business venture along with any of its risks to make a profit
</div>
<!-- <div class="speaker">speakerName</div> -->
</div>
</div>
</div>
<!-- --------------------------- -->
<div class="cardbox" data-aos="fade-up">
<div class="card1">
<div class="date">2019</div>
<img src="images/logo.png" class="image">
</div>
<div class="card2">
<div class="content">
<div class="topic">Startup Co-founders Meetup</div>
<div class="about">
Startup Byte is a discovery platform for the entire Indian startup ecosystem to discover information as well as connect with each other in a meaningful way! In short, we aim to be the one stop destination for everyone in the startup ecosystem.
</div>
<!-- <div class="speaker">speakerName</div> -->
</div>
</div>
</div>
<!-- --------------------------- -->
<div class="cardbox" data-aos="fade-up">
<div class="card1">
<div class="date">18 January 2019</div>
<img src="images/events/sampark.PNG" class="image">
</div>
<div class="card2">
<div class="content">
<div class="topic">Sampark</div>
<div class="about">
<p>"SAMPARK" is an initiative to bring our IIITG Community even closer,so the culture of teaching and learning from each other becomes even more profound.This event consists of talks by our very own IIITG people who have taken a step ahead in various career fields.These talks are centred around the whole topic of internships,research and various other fields that people opt.</p>
</div>
<!-- <div class="speaker">speakerName</div> -->
</div>
</div>
</div>
<!-- ------------------ -->
<div class="cardbox" data-aos="fade-up">
<div class="card1">
<div class="date">06 October 2018</div>
<img src="images/logo.png" class="image">
</div>
<div class="card2">
<div class="content">
<div class="topic">Ideation Workshop</div>
<div class="about">
<p><b>Ideation Workshop:</b><br>
The Ideation Workshop has covered the topics that shall include:<br>
<b> >> Idea Generation <br> >> Idea Validation <br> >> Basics of Prototyping (using industry standard software).</b>
</p>
</div>
<!-- <div class="speaker">speakerName</div> -->
</div>
</div>
</div>
</div>
</section> <!-- end s-services -->
<!-- works
================================================== -->
<section id='works' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Gallery</h3>
<h1 class="display-2 display-2--light">We love what we do, check out some of our latest works</h1>
</div>
</div>
</div>
<div class="row works-content" data-aos="fade-right">
<div class="col-full masonry-wrap">
<div class="masonry gallery">
<a href="images/gallery/1.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/1.jpg"
srcset="images/gallery/1.jpg 1x, images/gallery/1.jpg 2x" alt="">
</a>
<a href="images/gallery/2.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/2.jpg"
srcset="images/gallery/2.jpg 1x, images/gallery/2.jpg 2x" alt="">
</a>
<a href="images/gallery/3.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/3.jpg"
srcset="images/gallery/3.jpg 1x, images/gallery/3.jpg 2x" alt="">
</a>
<a href="images/gallery/4.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/4.jpg"
srcset="images/gallery/4.jpg 1x, images/gallery/4.jpg 2x" alt="">
</a>
<a href="images/gallery/5.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/5.jpg"
srcset="images/gallery/5.jpg 1x, images/gallery/5.jpg 2x" alt="">
</a>
<a href="images/gallery/6.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/6.jpg"
srcset="images/gallery/6.jpg 1x, images/gallery/6.jpg 2x" alt="">
</a>
<a href="images/gallery/2.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/7.jpg"
srcset="images/gallery/7.jpg 1x, images/gallery/7.jpg 2x" alt="">
</a>
<a href="images/gallery/8.jpg" class="thumb-link" title="" data-size="1050x700">
<img src="images/gallery/8.jpg"
srcset="images/gallery/8.jpg 1x, images/gallery/8.jpg 2x" alt="">
</a>
</div>
</div>
</div>
</section> <!-- end s-works -->
<!-- clients
================================================== -->
<section id="clients" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Partners</h3>
<h1 class="display-2">E-Cell, IIITG has been honored to
partner up with these brands.</h1>
</div>
</div> <!-- end section-header -->
<div class="row clients-outer" data-aos="fade-up">
<div class="col-full">
<div class="clients">
<a href="#0" title="" class="clients__slide"><img src="images/clients/primebakers.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/pizzahut.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/bigfm.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/poptales.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/hpprinters.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/technomate.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/time.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/muskan.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/bobaroda.jpg" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/nagabowl.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/ndimensions.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/hackerearth.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/Gplus.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/godrej.png" /></a>
</div> <!-- end clients -->
</div> <!-- end col-full -->
</div> <!-- end clients-outer -->
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>He was our guest for the lecture series.He is the CEO of Egnify Technologies. He is an alumni of Stanford University
</p>
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Mr. Kiran Babu</span>
<span class="testimonials__pos">CEO, Egnify Technologies</span>
</div>
</div>
<div class="testimonials__slide">
<p><h3>Our Previous Speakers</h3></p>
<p>He was our guest for the lecture series.He is the Co-Founder of Startup Byte.He holds a MBA degree in Entrepreneurship (2013) from Babson College, USA</p>
<img src="images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Mr. Praveen Dorna</span>
<span class="testimonials__pos">Co-founder, Startup Byte</span>
</div>
</div>
</div><!-- end testimonials -->
</div> <!-- end col-full -->
</div> <!-- end client-testimonials -->
</section> <!-- end s-clients -->
<section id="section-speaker" class="section-wrapper team gray-bg">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full" id="ourteam">
<h3 class="display-2" style="color:#eb0505;padding-top:1.5%"><span style="color:#fff">Our</span> Team</h3>
</div>
</div> <!-- end section-header -->
<div class="container1">
<div class="row">
<!-- <div class="col-sm-3 col-md-3">
</div> -->
<!-- /.col-sm-6 -->
<div class="col-sm-8 col-md-3" data-aos="fade-right">
<figure class="thumbnail">
<a href="#"><img src="img/jolly.jpg" class="img-responsive rounded" alt="Image"></a>
<figcaption class="caption text-center">
<h3>Aditya Jolly
<small>E-CELL Head</small>
</h3>
<ul class="social-links">
<li><a href="https://www.facebook.com/aditya.jolly.33"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IIITGhy"><i class="fa fa-twitter"></i></a></li>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<!-- /.col-sm-6 -->
<div class="col-sm-8 col-md-3" data-aos="fade-right">
<figure class="thumbnail">
<a href="#"><img src="img/dillesh.jpg" class="img-responsive rounded" alt="Image"></a>
<figcaption class="caption text-center">
<h3>Dillesh Kumar
<small>Technical Head</small>
</h3>
<ul class="social-links">
<li><a href="https://www.facebook.com/dellish.slimshaddy"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IIITGhy"><i class="fa fa-twitter"></i></a></li>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-8 col-md-3" data-aos="fade-right">
<figure class="thumbnail">
<a href="#"><img src="img/vajra.jpg" class="img-responsive rounded" alt="Image"></a>
<figcaption class="caption text-center">
<h3>Vajra Krishnam
<small>Marketing Team Head</small>
</h3>
<ul class="social-links">
<li><a href="https://www.facebook.com/vajra.unique"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IIITGhy"><i class="fa fa-twitter"></i></a></li>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<!-- <div class="col-sm-3 col-md-3">
</div> -->
<!-- /.col-sm-6 -->
<!-- /.col-sm-6 -->
</div>
<div class="row">
<!-- <div class="col-sm-3 col-md-3">
</div> -->
<!-- /.col-sm-6 -->
<div class="col-sm-8 col-md-3" data-aos="fade-right">
<figure class="thumbnail">
<a href="#"><img src="img/jolly.jpg" class="img-responsive rounded" alt="Image"></a>
<figcaption class="caption text-center">
<h3>Aditya Jolly
<small>E-CELL Head</small>
</h3>
<ul class="social-links">
<li><a href="https://www.facebook.com/aditya.jolly.33"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IIITGhy"><i class="fa fa-twitter"></i></a></li>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<!-- /.col-sm-6 -->
<div class="col-sm-8 col-md-3" data-aos="fade-right">
<figure class="thumbnail">
<a href="#"><img src="img/dillesh.jpg" class="img-responsive rounded" alt="Image"></a>
<figcaption class="caption text-center">
<h3>Dillesh Kumar
<small>Technical Head</small>
</h3>
<ul class="social-links">
<li><a href="https://www.facebook.com/dellish.slimshaddy"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IIITGhy"><i class="fa fa-twitter"></i></a></li>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-3 col-md-3" data-aos="fade-right">
<figure class="thumbnail" >
<a href="#"><img src="https://teamsdemo.office.com/img/closing-image.png" class="img-responsive" alt="Image"
style="max-width: 300px"></a>
<figcaption class="caption text-center">
<button class="full-width btn--primary" onclick="visitTeam()">All memebers</button>
</figcaption>
</figure>
</div>
<!-- <div class="col-sm-3 col-md-3">
</div> -->
<!-- /.col-sm-6 -->
<!-- /.col-sm-6 -->
</div>
</div>
<!-- .row -->
</div>
<!-- /.container -->
</section>
<!-- .team -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="overlay"></div>
<div class="contact__line1"></div>
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Contact Us</h3>
<h2 class="display-2 display-2--light">Reach out for more information or just say hello!</h2>
</div>
</div>
<div class="row contact-content" data-aos="fade-up">
<div class="contact-primary">
<h3 class="h6">Send Us A Message</h3>
<form name="contactForm" id="contactForm" method="post" action="" novalidate="novalidate">
<fieldset>
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Your Name" value="" minlength="2" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Your Email" value="" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="" class="full-width">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="Your Message" rows="10" cols="50" required="" aria-required="true" class="full-width"></textarea>
</div>
<div class="form-field">
<button class="full-width btn--primary">Submit</button>
<div class="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>
</fieldset>
</form>
<!-- contact-warning -->
<div class="message-warning">
Something went wrong. Please try again.
</div>
<!-- contact-success -->
<div class="message-success">
Your message was sent, thank you!<br>
</div>
</div> <!-- end contact-primary -->
<div class="contact-secondary">
<div class="contact-info">
<h3 class="h6 hide-on-fullwidth">Contact Info</h3>
<div class="cinfo">
<h5>Where to Find Us</h5>
<p>
IIITG - IT Park Street Bongora,<br> Borjhar, Guwahati,<br> Assam 781015
</p>
</div>
<div class="cinfo">
<h5>Email Us At</h5>
<p>
</p>
</div>
<div class="cinfo">
<h5>Call Us At</h5>
<p>
Phone: (+91) 8074 225 335<br>
</p>
</div>
<ul class="contact-social">
<li>
<a href="https://www.facebook.com/ecell.iiitguwahati/"target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://twitter.com/iiitghy"target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.instagram.com/ecell.iiitguwahati/"target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a>
</li>
</ul> <!-- end contact-social -->
</div> <!-- end contact-info -->
</div> <!-- end contact-secondary -->
</div> <!-- end contact-content -->
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<div class="row footer-bottom">
<div class="col-twelve">
<img src="images/logo-footer.png" style="width:50px;height:50px;">
<div class="footer-logo"></div>
<div class="copyright">
<span>© Copyright IIITG 2019 | Designed by <a href="#popup1">E-Cell Technical Team</a></span>
</div>
<!--popup-->
<div id="popup1" class="mineup">
<div class="popup">
<a class="close" href="#">×</a>
<div class="content">
<div class="row">
<div class="column">
<div class="card">
<img src="img/dillesh.jpg" alt="Jane" style="width:70%">
<span style="color:black;font-size:130%" ><p><b>Dillesh Kumar<br><span style="color:#eb0505">E-mail:</span> [email protected]</b></p></span>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/sameer.jpg" alt="Mike" style="width:70%">
<span style="color:black;font-size:130%" ><p><b>Sameer Kumar<br><span style="color:#eb0505">E-mail:</span> kushwahasameerkumar@gmail</b></p></span>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/shravan.jpg" alt="John" style="width:70%">
<span style="color:black;font-size:130%" ><p><b>Venkata Shravan<br><span style="color:#eb0505">E-mail:</span> [email protected]</b></p></span>
</div>
</div>
</div>
</div>
</div>
</div>
<!--popup css-->
<style>
.mineup {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.mineup:target {
visibility: visible;
opacity: 1;
}
.popup {
margin: 70px auto;
padding: 20px;
background: #fff;
border-radius: 5px;
width: 70%;
position: relative;
transition: all 5s ease-in-out;
}
.popup h2 {
margin-top: 0;
color: #333;
}
.popup .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #333;
}
.popup .close:hover {
color: #06D85F;
}
.popup .content {
max-height: 30%;
overflow: auto;
}
.column {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}
/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
.column {
width: 100%;
display: block;
}
}
/* Add some shadows to create a card effect */
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
/* Some left and right padding inside the container */
.container {
padding: 0 16px;
}
/* Clear floats */
.container::after, .row::after {
content: "";
clear: both;
display: table;
}
}
</style>
<!--popup css-->
<!--end of popup-->
<div class="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-arrow-up" aria-hidden="true"></i></a>
</div>
</div>
</div> <!-- end footer-bottom -->
</footer> <!-- end footer -->
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div> <!-- end photoSwipe background -->
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader">
<div class="line-scale-pulse-out">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- wow js -->
<script src="js/wow.min.js"></script>
<!-- Custom JS -->
<script type="text/javascript">
function visitTeam(){
window.location.href = "team.html";
}
</script>
</body>
</html>