This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1072 lines (996 loc) · 45.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Udgam, IIT Guwahati</title>
<meta charset="utf-8" />
<meta
content="width=device-width, initial-scale=1, viewport-fit=cover"
name="viewport"
/>
<meta content="ie=edge" http-equiv="x-ua-compatible" />
<meta
name="description"
content="The Annual Entrepreneurship Summit of E-Cell, IIT Guwahati."
/>
<meta name="keywords" content="" />
<!-- Styles -->
<link href="assets/css/page.min.css" rel="stylesheet" />
<link href="assets/css/style2.css" rel="stylesheet" />
<!-- Favicons -->
<link rel="apple-touch-icon" href="images/UDGAM_logo.svg" />
<link rel="icon" href="images/UDGAM_logo.svg" />
<!-- Open Graph Tags -->
<meta property="og:title" content="UDGAM 2021" />
<meta
property="og:description"
content="The Annual Entrepreneurship Summit of E-Cell, IIT Guwahati."
/>
<meta property="og:image" content="images/favicon.png" />
<meta property="og:url" content="https://udgam-iitg.in/" />
<meta name="twitter:card" content="summary_large_image" />
<!-- AoS (Animate On Scroll Library) -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S7V30F5DNR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S7V30F5DNR');
</script>
</head>
<body>
<!--CSS Spinner-->
<div class="spinner-wrapper">
<div class="spinner">
<div class="cube1"></div>
<div class="cube2"></div>
</div>
</div>
<!-- Navbar -->
<nav
class="navbar navbar-expand-lg navbar-light navbar-stick-dark "
data-navbar="smart"
>
<div class="container">
<div class="navbar-left">
<button class="navbar-toggler" type="button">☰</button>
<a class="navbar-brand" href="index.html">
<img
class="logo-dark"
src="images/UDGAM_logo.svg"
alt="logo"
height="60px"
width="60px"
/>
<img
class="logo-light"
src="images/UDGAM_logo.svg"
alt="logo"
height="60px"
width="60px"
/>
</a>
</div>
<section class="navbar-mobile">
<!-- <span class="navbar-divider d-mobile-none"></span> -->
<nav class="nav nav-navbar ml-auto">
<a class="nav-link" href="#home">Home</a>
<a class="nav-link" href="#events">Events</a>
<a class="nav-link" href="speakers.html">Speakers</a>
<!-- <a class="nav-link" href="#">Schedule</a> -->
<a class="nav-link" href="sponsors.html">Sponsors</a>
<a class="nav-link" href="team_page.html">Team</a>
<a class="nav-link" href="#FAQ">FAQ</a>
<a class="nav-link" href="#contactus">Contact Us</a>
</nav>
<div>
<a
class="btn btn-sm btn-round btn-theme ml-lg-4 mr-2"
href="register.html"
>Register Now</a
>
</div>
</section>
</div>
</nav>
<!-- /.navbar -->
<header
class="header text-white mh-fullscreen p-0 overflow-hidden"
style="background-image: url(images/bg.jpg);"
id="home"
>
<div class="container-fluid" id="overlay">
<div class="container text-center">
<div class="row mh-fullscreen">
<div class="col-lg-8 mx-auto align-self-center pt-10">
<div class="col-12 d-inline-block">
<!-- <img src="images/UDGAM logo long website.png" alt="img"> -->
<img
src="images/udgam_logo_long_website.svg"
alt="img"
/>
</div>
</div>
<div class="col-12 align-self-end text-center pb-10">
<a class="scroll-down-5 scroll-down-white" href="#Aboutus"
><span></span
></a>
</div>
</div>
</div>
</div>
</header>
<!-- Banner -->
<!-- About -->
<main class="main-content">
<header
class="header black-background"
id="Aboutus"
>
<div class="container">
<div class="row align-items-center h-100">
<div class="col-md-10 mx-auto">
<h1 class="display-3 fw-500 text-center mb-7 color">Schedule</h1>
</div>
</div>
<div class="row gap-y">
<div class=" col-12 col-lg-4 d-flex align-items-stretch mb-7" data-aos="fade-up" data-aos-duration="150" data-aos-delay="100">
<div class="transform card hover-shadow-4 shadow-2 ">
<img class="items card-img-top " src="images/1.png" alt=" Card image cap ">
</div>
</div>
<div class=" col-12 col-lg-4 d-flex align-items-stretch mb-7" data-aos="fade-up" data-aos-duration="150" data-aos-delay="100">
<div class="transform card hover-shadow-4 shadow-2 ">
<img class="items card-img-top " src="images/2.png" alt=" Card image cap ">
</div>
</div>
<div class=" col-12 col-lg-4 d-flex align-items-stretch mb-7" data-aos="fade-up" data-aos-duration="150" data-aos-delay="100">
<div class="transform card hover-shadow-4 shadow-2 ">
<img class="items card-img-top " src="images/3.png" alt=" Card image cap ">
</div>
</div>
</div>
</div>
</header>
<!-- This year Speaker -->
<section id="speakers" class="section" >
<div class="container">
<header class="section-header">
<h2 class="display-3 fw-500 text-center text-white color">Speakers</h2>
<p class="lead text-white">ALL GREAT PEOPLE WE ARE LOOKING TO HOST</p>
<hr class="text-white" />
</header>
<div class="row gap-y">
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/jimmy.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Jimmy Wales</h3>
<hr class="w-50px mt-0 mb-2">
<p>Founder, Wikipedia</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/Kevinharrigton.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Kevin Harrington</h3>
<hr class="w-50px mt-0 mb-2">
<p>Original Shark On Shark Tank</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/saireechahal.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Sairee Chahal</h3>
<hr class="w-50px mt-0 mb-2">
<p>Founder & CEO, Sheroes</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/rohit-kapoor.gif);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Rohit Kapoor</h3>
<hr class="w-50px mt-0 mb-2">
<p>CEO, OYO (India & South Asia)</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/bindeshwar-pathak-1.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Bindeswar Pathak</h3>
<hr class="w-50px mt-0 mb-2">
<p>Sulabh International</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/img_129109_supriyapaul.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Supriya Paul</h3>
<hr class="w-50px mt-0 mb-2">
<p>Director & Co-founder, Josh Talks</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/Sarbvir-Singh.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Sarbvir Singh</h3>
<hr class="w-50px mt-0 mb-2">
<p>CEO, Policybazaar.com</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/Hari.png);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Hari T.N</h3>
<hr class="w-50px mt-0 mb-2">
<p>Head of HR, BigBasket</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/sandeepjain.jpeg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Sandeep Jain</h3>
<hr class="w-50px mt-0 mb-2">
<p>Founder, GeeksforGeeks</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/raghu1.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Raghu Khanna</h3>
<hr class="w-50px mt-0 mb-2">
<p>Founder & CEO, CASHurDRIVE</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/Shuvi-Shrivastava-head-web.png)" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Shuvi Shrivastava</h3>
<hr class="w-50px mt-0 mb-2">
<p>Vice President, Lightspeed India</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/Vaibhavdom.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Vaibhav Domkundwar</h3>
<hr class="w-50px mt-0 mb-2">
<p>Founder & CEO, Better</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/akashbhat.png);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Akash Bhat</h3>
<hr class="w-50px mt-0 mb-2">
<p>Investor, Scrum VC Host, The Desi VC Podcast</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/Karthik.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Karthik Jayaraman</h3>
<hr class="w-50px mt-0 mb-2">
<p>Founder, WayCool Foods</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/nishrin.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Nishrin Patanwala</h3>
<hr class="w-50px mt-0 mb-2">
<p> GM, Rebel Foods</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/anirban.jpeg)" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Anirban Das</h3>
<hr class="w-50px mt-0 mb-2">
<p>Head of Product, Dunzo</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/sandeepmurthy.jpg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Sandeep Murthy </h3>
<hr class="w-50px mt-0 mb-2">
<p>Partner, Lightbox</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-lg-4 hover-shadow-4" data-aos="fade-up" data-aos-duration="250" data-aos-delay="00">
<a href="#">
<div class="card text-white justify-content-end bg-img h-400 shadow-8" style="background-image: url(images/speakers/sankalp.jpeg);" data-scrim-bottom="7">
<div class="card-body flex-grow-0 text-center">
<h3>Sankalp Kelshikar</h3>
<hr class="w-50px mt-0 mb-2">
<p>Co-founder, Cityflo</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- COUNTDOWN
<section class="section bg-gray counter" >
<div class="container">
<div id="text">
<div class="row justify-content-center txt txt-sm txt-md">
Countdown to Udgam 2021
</div>
<div class="row" id="countdown">
<div class="col-6 d-flex p-0">
<div class="col d-flex px-1 px-md-3">
<div class="col px-0">
<span class="num num-md num-sm" id="days">18</span>
</div>
<div class="col px-0 pt-md-3 align-items-start">
<span class="sup sup-sm sup-md">D</span>
</div>
</div>
<div class="col d-flex px-1 px-md-3">
<div class="col px-0">
<span class="num num-md num-sm" id="hours">18</span>
</div>
<div class="col px-0 pt-md-3 align-items-start">
<span class="sup sup-sm sup-md">H</span>
</div>
</div>
</div>
<div class="col-6 d-flex p-0">
<div class="col d-flex px-1 px-md-3">
<div class="col px-0">
<span class="num num-md num-sm" id="minutes">18</span>
</div>
<div class="col px-0 pt-md-3 align-items-start">
<span class="sup sup-sm sup-md">M</span>
</div>
</div>
<div class="col d-flex px-1 px-md-3">
<div class="col px-0">
<span class="num num-md num-sm" id="seconds">18</span>
</div>
<div class="col px-0 pt-md-3 align-items-start">
<span class="sup sup-sm sup-md">S</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!-- Events -->
<section id="events" class="section">
<div class="container">
<header class="section-header">
<h2 class="display-3 fw-500 text-center text-white color">Events</h2>
<p class="lead text-white">HERE IS WHAT WE HAVE FOR YOU</p>
<hr class="text-white" />
</header>
<div class="row gap-y">
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="00"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/lecture.png"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">
Lecture Series
</h5>
<p class="mb-0 text-center text-md-left card-text ">
Ever felt that you have a drive, you have a passion, you
have what it takes but felt that somewhere along the way
your ideas aren’t reaching fruition? Ever felt that how is
it that people succeed against so many odds? Hear the
entrepreneurs live as they walk you through the path of how
they met with success. Take their guidance and start your
journey.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="speakers.html "
>Read more <i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="100"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/digital.png"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">
Workshops
</h5>
<p class="mb-0 text-center text-md-left card-text">
The classrooms never got interesting until now. The art of
entrepreneurship has been a closely guarded secret. Many of
us are very motivated when we begin working on our idea but
slowly that passion fizzles out. From the finest business
moves to the foxiest marketing maneuvers industry
specialists teach you the art of entrepreneurship.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="workshops.html "
>Read more <i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="200"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/internfair.png"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">
Intern Fair
</h5>
<p class="mb-0 text-center text-md-left card-text">
Once again, get ready for the biggest Intern-fair in the
North-east. It is an amazing platform for companies to find
interns and for students to get the guidance and practice
they are looking for to boost their career.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="http://internfair.udgam-iitg.in/"
>Register<i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="00"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/dframe.jpg"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">
DFrame
</h5>
<p class="mb-0 text-center text-md-left card-text">
DFrame is a perfect blend of creativity and business relevance. We believe it will frame and develop the designer's innovative quotient by flexing their design muscle to find technical solutions whilst staying true the human-centric approach.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="https://dare2compete.com/o/design-thinking-for-entrepreneurship-workshop-udgam-2021-the-annual-entrepreneurship-summit-of-iit-guwahati-indian-ins-141699 "
>Read more<i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="100"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/disrupt.jpeg"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">Disrupt</h5>
<p class="mb-0 text-center text-md-left card-text">
The classic pitching battle is reinvented in this edition of
Udgam. So, perfect your pitches and fight it out in front of
VCs and angel investors who are here to tear you down and
build you up.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="https://dare2compete.com/o/disrupt-udgam-2021-the-annual-entrepreneurship-summit-of-iit-guwahati-e-cell-iit-guwahati-138845"
>Read more <i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="200"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/pmx.jpeg"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">PMx</h5>
<p class="mb-0 text-center text-md-left card-text">
PMx: A Product Management Expedition will be the IIT
Guwahati’s very first product management competition to be
held during UDGAM. Aimed at giving aspiring product managers
and tech-enthusiasts a platform to innovate and work on a
real industry problem.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="https://dare2compete.com/o/pmx-product-management-expedition-udgam-e-cell-iit-guwahati-137363"
>Read more<i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="00"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/scam.jpg"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">
Live Events
</h5>
<p class="mb-0 text-center text-md-left card-text">
Any summit would look boring without any fun in them. We at Udgam conduct many fun events like Business Quiz, Virtual Stock Market etc. This year we are also conducting E-Among Us, an Entrepreneurship Themed Among Us game; Tweet Contest; word search and many more fun games on our social media Handles!
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="https://dare2compete.com/o/scam-2021-the-virtual-stock-market-simulation-udgam-2021-the-annual-entrepreneurship-summit-of-iit-guwahati-indian-ins-142986"
>Read more<i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="100"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/nec.jpeg"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">NEC</h5>
<p class="mb-0 text-center text-md-left card-text">
Under NEC, representatives of different colleges will be joining together online for a discussion on the events and activities held throughout the year by their respective E-Cells, while also coming up with ideas for the betterment of entrepreneurship and startup culture. This would also assist in nurturing the budding Startup-Cells or the E-Cells in the younger members of our North East Institute fraternity.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="#"
>Read more <i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
<div
class="col-12 col-lg-4 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-duration="150"
data-aos-delay="200"
>
<div class="card hover-shadow-4 shadow-2">
<img
class="card-img-top"
src="images/panel.jpg"
alt=" Card image cap "
/>
<div class="card-body">
<h5 class="card-title lead-4 fw-600 ">Panel Discussion</h5>
<p class="mb-0 text-center text-md-left card-text">
Sometimes, just hearing experts discuss is insightful enough. We contact experts from industries who will indulge in intriguing debates and dialogues on business aspects, current markets, and many other topics.
</p>
</div>
<div class="card-footer text-right">
<a
class="fs-12 fw-600 btn btn-theme btn-sm"
href="#"
>Read more<i class="fa fa-angle-right pl-1"></i
></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Register -->
<section class="section black-background registration">
<div class="container">
<header class="section-header" style="max-width: 100%;">
<p class="lead-4 fw-600 color">
Witness the Biggest Entrepreneurship Summit of North East India
</p>
<h2 class="display-3 fw-500 text-center white-color">UDGAM 2021</h2>
<a class="btn btn-theme btn-lg mt-2 custom" href="register.html"
>Registration Passes</a
>
</header>
</div>
</section>
<header
class="header black-background"
id="Aboutus"
style="background-image: url(images/aboutus.jpg);"
>
<div class="container">
<div class="row align-items-center h-100">
<div class="col-md-10 mx-auto">
<h1 class="display-3 fw-500 text-center mb-7 color">About us</h1>
<!-- <div class=" video-container text-center ">
<iframe width="560" height="315" src="https://www.youtube.com/embed/cHUavlhAuyw" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<br> -->
<p class="lead-2 text-center text-md-left white-color">
UDGAM is the flagship event of the Entrepreneurial Development
Cell, IIT Guwahati. It was conceptualized to develop and spread
the spirit of entrepreneurship among the youth of the
North-East, and India in general thus earning itself the
reputation of being the largest E-Summit in the north-east.
E-Cell, IIT Guwahati, is a special interest group under
Technical Board of the Students Gymkhana Council, IIT Guwahati
and is responsible for activities and initiatives which would
instil and promote the spirit of entrepreneurship amongst the
student community. To foster an environment which is conducive
to entrepreneurship, we at E-Cell organize lectures, events and
workshops to create a platform for them to realize their
potential and showcase their bright ideas in front of public and
industry
</p>
</div>
</div>
</div>
</header>
<!-- FAQ -->
<section class="section" style="padding-bottom: 0px" id="FAQ">
<div class="container">
<header class="section-header">
<h2 class="display-3 fw-500 text-center color">FAQ</h2>
</header>
<div class="faq">
<button class="accordion">What is UDGAM?
</button>
<div class="panel">
<p>UDGAM is the Annual Entrepreneurship Summit of IIT Guwahati, which is held to bring together the academic community, new-age entrepreneurs, industry leaders, and investors on a common platform.
</p>
</div>
</div>
<div class="faq">
<button class="accordion">The dates are 15th to 24th of January, but what about COVID?
</button>
<div class="panel">
<p>Don't worry we've got you covered. This edition of E-Summit is completely online and you can attend it from any part of the world!
</p>
</div>
</div>
<div class="faq">
<button class="accordion">Is it necessary to participate in a competition to be a part of the summit?</button>
<div class="panel">
<p>No, we have separate passes for all those who want to attend speaker sessions, fun events, and workshops.</p>
</div>
</div>
<div class="faq">
<button class="accordion">Who all can be a part of the summit?
</button>
<div class="panel">
<p>Students, professionals and professors all can be a part of the summit. </p>
</div>
</div>
<div class="faq">
<button class="accordion">Will we get the recordings of the keynotes and panel discussions?
</button>
<div class="panel">
<p>Yes, If you have purchased the UDGAM pass and somehow miss the lecture, You’ll be provided with the recordings post the event which you can access forever. </p>
</div>
</div>
<div class="faq">
<button class="accordion">What are the perks of attending the E-Summit?
</button>
<div class="panel">
<p>Apart from an awesome learning experience, you are in for some fun activities and chance to win goodies and certificates from E-Cell IIT Guwahati.
</p>
</div>
</div>
<div class="faq">
<button class="accordion">Why am I being asked to pay for the event?
</button>
<div class="panel">
<p>We charge a nominal amount for the event to help us arrange this amazing summit and provide a great user experience.</p>
</div>
</div>
<div class="faq">
<button class="accordion">How will I know if my registration is approved?
</button>
<div class="panel">
<p>You will receive a mail for successful transaction. Make sure you purchased the correct pass </p>
</div>
</div>
<div class="faq">
<button class="accordion">Is my ticket transferable?
</button>
<div class="panel">
<p>No, the person who has registered for the event can join the events. No one else, will be allowed to join in his/her place.</p>
</div>
</div>
<div class="faq">
<button class="accordion">Is ticket price refundable?
</button>
<div class="panel">
<p>Ticket price is refundable only if the event for which you have registered is cancelled.</p>
</div>
</div>
</div>
</section>
<!-- Location -->
<!-- <section class="section">
<div class="container">
<header class="section-header">
<h2 class="display-3 fw-500 text-center color">Location</h2>
</header>
<div class="video-container text-center">
<iframe
allowfullscreen
frameborder=" 0 "
src=" https://www.google.com/maps/embed/v1/place?key=AIzaSyDMzphcpXvMal2GIyU8mz2iD7nGZJcIbMg%20&q=place_id:ChIJ1ZPM58FaWjcR4ZDEz-OB9As "
style="border: 0; width: 100%; height: 500px;"
>
</iframe>
</div>
</div>
</section> -->
<!-- Contact Form -->
<section
id="contactus"
class="section bg-secondary"
style="background-image: url(images/contact_us.svg);"
>
<div class="container">
<header class="section-header">
<h2 class="display-3 fw-500 text-center color">Contact Us</h2>
</header>
<form
class="input-glass col-11 col-md-8 mx-auto p-5 p-md-7 black-background"
method="POST"
action="https://formspree.io/f/xjvppqpg"
>
<div class="form-group">
<input
class="form-control"
type="text"
name="name"
id="name"
placeholder="Name"
/>
</div>
<div class="form-group">
<input
class="form-control"
type="email"
name="email"
id="email"
placeholder="Email"
/>
</div>
<div class="form-group">
<textarea
class="form-control"
name="message"
id="message"
placeholder="Enter your message"
rows="6"
></textarea>
</div>
<div class="form-group input-group">
<div class="col-12 col-md-6 text-center text-md-left">
<input
class="btn btn-theme btn-block"
type="submit"
value="Send Message"
style="margin-bottom: 15px"
/>
</div>
<div class="col-12 col-md-6 text-center text-md-right">
<input
class="btn btn-theme btn-block"
type="reset"
value="Reset"
style="padding-top: 6px; background-color:#fd6363;"
/>
</div>
</div>
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer" style="background-color: #0c0032;">
<div class="container text-center">
<div class="social social-sm social-bg-brand social-cycling">
<a class="social-twitter" href=" https://twitter.com/ecelliitg "
><i class="fa fa-twitter"></i
></a>
<a
class="social-facebook"
href=" https://www.facebook.com/ecell.iitg/ "
><i class="fa fa-facebook"></i
></a>
<a href=" mailto:edc@iitg.ac.in "><i class="fa fa-envelope"></i></a>
<a
class="social-linkedin"
href="https://www.linkedin.com/company/13256987"
><i class="fa fa-linkedin"></i
></a>
<a
class="social-instagram"
href=" https://www.instagram.com/ecell_iitg/ "
><i class="fa fa-instagram"></i
></a>
</div>
<br />