-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.html
699 lines (562 loc) · 33.3 KB
/
event.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Our Initiative</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/KNITlogo.png" rel="icon">
<link href="assets/img/KNITlogo.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css2?family=Kite+One&family=Philosopher:ital@1&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Kite+One&family=Philosopher:wght@700&family=Playfair+Display+SC:ital,wght@1,700&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/eventvendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/eventvendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/eventvendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/eventvendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/eventvendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/eventvendor/aos/aos.css" rel="stylesheet">
<!-- fontawesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Template Main CSS File -->
<link href="assets/css/eventStyle.css" rel="stylesheet">
<style>
.image
{
margin-top:10%;
}
</style>
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1 >Our Initiatives</h1>
<p style="font-family: 'Philosopher', sans-serif;"> <span class="typed"
data-typed-items="Startup Conclave, Reminiscence,Premise And Surmise , The Genesis"></span></p>
</div>
</section>
<header id="header" class="d-flex align-items-center">
<div class="container">
<!-- The main logo is shown in mobile version only. The centered nav-logo in nav menu is displayed in desktop view -->
<div class="logo d-block d-lg-none">
<a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul class="nav-inner">
<li class="active"><a href="index.html">Home</a></li>
<li class="drop-down"><a href="">About</a>
<ul>
<li><a href="index.html#about">About Us</a></li>
<li><a href="index.html#team">Team</a></li>
</ul>
</li>
<li><a href="#conclave">Startup Conclave</a></li>
<li class="nav-logo"><a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a></li>
<li><a href="#remen">Reminiscence</a></li>
<li><a href="#premise">Premise And Surmise</a></li>
<li><a href="#genesis">The Genesis</a></li>
</ul>
</nav>
</div>
</header>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<!--
<div class="container mt-5">
<div class="row">
<div class="col-md-12">
<div class="d-flex justify-content-between align-items-center breaking-news bg-white">
<div class="d-flex flex-row flex-grow-1 flex-fill justify-content-center bg-primary py-2 text-white px-1 news"><span class="d-flex align-items-center"> Upcoming event</span></div>
<marquee class="news-scroll" behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();"> <a href="#">Ú-Quiz - A 20 minutes walkthrough of your entrepreneurial side of the brain</a> <span class="dot"></span> <span class="dot"></span> </marquee>
</div>
</div>
</div>
</div>
<br><br>
-->
<!-- ======= The Genesis Section ======= -->
<section id="genesis" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>The Genesis</h2>
<h4 style="font-family: 'Kite One', sans-serif; color:#a08480">A Flare in the Dawn</h4>
</div>
</div>
<div class="container">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="card" style="width: 15rem;border-radius:30%;height:180px;background-color: #aea071;">
<div class="card-body">
<h5 class="card-title" style="font-family: 'Playfair Display SC', serif;color:#1f1d1c">Solutions for Mundane Problems</h5>
<h6 class="card-subtitle mb-2 text-muted mt-2" style="font-family: 'Kite One', sans-serif;">Learning from the budding startups about how mundane can be special</h6>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="card" style="width: 15rem;border-radius:30%;height:180px;background-color: #aea071;">
<div class="card-body">
<h5 class="card-title" style="font-family: 'Playfair Display SC', serif;color:#1f1d1c">Between the Milestone</h5>
<h6 class="card-subtitle mb-2 text-muted mt-2" style="font-family: 'Kite One', sans-serif;">Promoting some budding startups of untouched sectors.</h6>
</div>
</div>
</div>
<div class="col-lg-3 mt-2">
<div class="card text-center" style="width: 15rem;border-radius:30%;height:180px;background-color: #aea071;">
<div class="card-body">
<h5 class="card-title" style="font-family: 'Playfair Display SC', serif;color:#1f1d1c">Breaking the Ice</h5>
<h6 class="card-subtitle mb-2 text-muted mt-2" style="font-family: 'Kite One', sans-serif;">Adapting an out of box approach.</h6>
</div>
</div>
</div>
<div class="col-lg-3 mt-2">
<div class="card text-center" style="width: 15rem;border-radius:30%;height:180px;background-color: #aea071;">
<div class="card-body">
<h5 class="card-title" style="font-family: 'Playfair Display SC', serif;">Myths and Facts</h5>
<h6 class="card-subtitle mb-2 text-muted mt-2" style="font-family: 'Kite One', sans-serif;">Dilemma for an Entrepreneur.</h6>
</div>
</div>
</div>
</div>
</div>
<br><br>
<p style="font-family: 'Kite One', sans-serif;font-size:18px;color:black"> This is an entrepreneurship era where most ingenious and unique startups are coming up, bringing new hopes for a better future. But how these ideas really came to? And what was their journey like? And those burning questions- what does it take to be an entrepreneur and how to become one?
IISC Start-up Cell came up with “The Genesis- A flare in the dawn”. An initiative to promote some budding startups of untouched sectors, their journey so far, and how they are making a difference even in the COVID pandemic. In this initiative, IISC conducted a 2-day entrepreneurship talk with the CEOs of such startups. Along the way, learning how mundane could be special from these startups and tried to solve all the myths and dilemmas, the budding entrepreneurs could face.</p>
<br>
<div class="row mt-2" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Mitti Cafe</li>
<li data-filter=".filter-app1">Shef</li>
<li data-filter=".filter-card">Retain the Star</li>
<li data-filter=".filter-web">Strawcture</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gall="portfolioGallery" class="venobox"
title="App 1"><i class="bx bx-plus"></i></a>
<a href="https://www.mitticafe.org/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/straw.png" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/straw.png" data-gall="portfolioGallery" class="venobox"
title="Web 3"><i class="bx bx-plus"></i></a>
<a href="https://youtu.be/YerY_Z_fURA" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.png" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.png" data-gall="portfolioGallery" class="venobox"
title="App 2"><i class="bx bx-plus"></i></a>
<a href="https://youtu.be/6boyI6ubv68" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app1">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/shef1.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/shef1.jpg" data-gall="portfolioGallery" class="venobox"
title="App 2"><i class="bx bx-plus"></i></a>
<a href="https://www.instagram.com/iiscknit/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gall="portfolioGallery" class="venobox"
title="Card 2"><i class="bx bx-plus"></i></a>
<a href="https://www.instagram.com/iiscknit/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app1">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/shef2.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/shef2.jpg" data-gall="portfolioGallery" class="venobox"
title="App 2"><i class="bx bx-plus"></i></a>
<a href="https://youtu.be/_P9pBfh3xV4" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gall="portfolioGallery" class="venobox"
title="Web 2"><i class="bx bx-plus"></i></a>
<a href="https://www.strawcture.com/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app1">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/shef3.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/shef3.jpg" data-gall="portfolioGallery" class="venobox"
title="App 2"><i class="bx bx-plus"></i></a>
<a href="http://studyhallfoundation.org/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gall="portfolioGallery" class="venobox"
title="App 3"><i class="bx bx-plus"></i></a>
<a href="https://www.instagram.com/iiscknit/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gall="portfolioGallery" class="venobox"
title="Card 1"><i class="bx bx-plus"></i></a>
<a href="https://retainthestar.in/careers/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gall="portfolioGallery" class="venobox"
title="Card 3"><i class="bx bx-plus"></i></a>
<a href="https://youtu.be/kcJ2kT0V8G4" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid pimg" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gall="portfolioGallery" class="venobox"
title="Web 3"><i class="bx bx-plus"></i></a>
<a href="https://www.instagram.com/iiscknit/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="container">
<br>
<h2 >Co-partners</h2>
</div>
<div class="row">
<div class="col-lg-6" data-aos="fade-right">
<div class="image">
<img src="assets/img/spons.jpg"class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-6" data-aos="fade-left">
<div class="content pt-4 pt-lg-0 pl-0 pl-lg-3 ">
<h4>
IISC KNIT Sultanpur is proud to announce our Media and Event Partners for The Genesis, an entrepreneurial talk session of two days.</h4>
<p style="font-family: 'Kite One', sans-serif;">
Journalism has been called the “first rough draft of history”. DU Beat may be termed as the first rough
draft of DU history. Ridiculous hyperboles apart, DUB knows fully well that the DU students have an insatiable curiosity to know everything. Conscious of this, DU Beat has been providing the DU students
with what they need and demand – the truth.
We are proud to announce DUBEATS as our official <b>media partner</b>.
<br>
The Education Tree is India's fastest growing youth community that provides a platform for the youth to follow their passion. It bridges the gap between corporates and students and provides an opportunity for students to work with various brands.
We are proud to announce The Education Tree as our <b>Youth Community Partner</b>.
<br>
Campus Bloggers is India's coolest media platform for students. It is one of India's leading community of College Bloggers and Influencers.
We are proud to announce Campus Bloggers as our Campus <b>Blogging Partner</b>.
<br>
There are some people who live in a dream world, and there are some who face reality; and then there are those who turn one into the other.For IISC KNIT,our event partners have been the people who have transformed us from on to another.We are glad to announce them as our partners for this innovative event. We have IISER Behrampur, Cashcry, Netalas, Mahamania, and Ofo world as our <b>event partners</b>.</p>
</div>
</div>
</div>
</div>
</section><!-- End About Us Section -->
<section id="conclave" class="conclave">
<div class="container">
<div class="section-title">
<h2>Startup Conclave</h2>
<p style="font-family: 'Lobster', cursive;font-size:25px;">“Most great people have attained their greatest success just one step beyond their greatest failure.” -
Napoleon Hill</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/conclave.jpg" class="img-fluid conc " alt="">
</div>
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/past3.jpg" class="img-fluid conc " alt="">
</div>
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/past8.jpg" class="img-fluid conc" alt="">
</div>
</div>
<br>
<br>
<p style="font-family: 'Kite One', sans-serif;font-size:20px;"> Work is the most important part of a person’s life and the only way to be satisfied by your work is to do what you truly love and like. These days to be innovative and entrepreneurial are becoming the two most important and crucial qualities that need to be instilled in a person so that the world comes in a brighter future.Pitching sessions are for all those people who all want to present the ideas and get a chance to avail government help in funding their belief of the future business.
Great ideas result in great work which comes when you adore your work, the work whose foundation was your own idea which will result into great undertakings, paving the way for a glaring success. Thus, these sessions of pitching are held in order to facilitate this vision of promoting entrepreneurship so that students grab the opportunity to bring their idea into existence.</p>
</section><!-- End About Section -->
<hr>
<!-- ======= Facts Section ======= -->
<section id="remen" class="remen">
<div class="container">
<div class="section-title">
<h2>Reminiscence</h2>
<br>
<div class="row">
<div class="col-lg-4 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<img src="assets/img/pic1.jpg" style="height: 150px; width: 150px;border-radius: 50%;">
<p class="mt-2" style="font-family: 'Philosopher', sans-serif;"><strong>Vivek Yadav</strong> I.A.S Officier,Vijaywada</p>
<p style="font-family: 'Philosopher', sans-serif;">AIR-<span data-toggle="counter-up" class="text-danger">28</span>,UPSC(2008)</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<img src="assets/img/pic2.jpg" style="height: 150px; width: 150px;border-radius: 50%;">
<p class='mt-2' style="font-family: 'Philosopher', sans-serif;" ><strong>Shivam Aggrawal</strong> Scientific Officer, RSS Division BARC</p>
<p style="font-family: 'Philosopher', sans-serif;" >AIR-<span data-toggle="counter-up" class="text-danger">02</span>,BARC</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<img src="assets/img/pic3.jpg" style="height: 150px; width: 150px;border-radius: 50%;">
<p class="mt-2" style="font-family: 'Philosopher', sans-serif;" ><strong>Ali Waris Khan</strong> IRSSE Officer at Indian Railways</p>
<p style="font-family: 'Philosopher', sans-serif;" >AIR-<span data-toggle="counter-up" class="text-danger">16</span>,ESE(2018)</p>
</div>
</div>
</div>
<br>
<p class="mt-2"> <b style="font-family: 'Lobster', cursive;font-size:22px;color:gray;"> “Never tell people how to do things. Tell them what to do and they will surprise you with their ingenuity.”
-George S. Patton</b></br>
<br>
<p style="font-family: 'Kite One', sans-serif;font-size:18px;"> Reminiscence – an interactive live conferencing session, held to provide folks a great opportunity to make their own paths of success as advices works when it is from people among ourselves. Here we introduce students with their alumnus, who were once in their shoes. They guide us with their life experiences, they not just motivate us but give examples of their struggle and tell us what to do instead of laying an authoritative front of discussion. The best part of this event is being a live event not just a recorded video, people get the answer to their questions and problems instantaneously in the most simple and crude form.</br>
Its inspirational for folks as the hard work of our respected guest is commendable and help students to achieve brilliance. Till this day we had the honour of having three respected guests and we are beholden to them :-<br/>
1. Mr. Ali Waris Khan Sir<br/>
2. Mr. Shivam Agarwal Sir<br/>
3. Mr. Vivek Yadav Sir<br/>
With these wonderful, supportive interactions and a person’s diligence one can achieve whatever they want.</p></p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/past2.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/one.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/remen.jpg" class="card-img-top" alt="...">
</div>
</div>
</div>
</div>
<div class="container mt-2">
<div class="row">
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/remen1.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/remen2.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/remen3.jpg" class="card-img-top" alt="...">
</div>
</div>
</div>
</div>
</section>
<hr>
<!-- ======= Premise Section ======= -->
<section id="premise" class="premise mt-2">
<div class="container">
<div class="section-title">
<h2>Premise And Surmise</h2>
<p style="font-family: 'Philosopher', sans-serif;font-size:20px;"><i>“Wit is a sword; it is meant to make people feel the point as well as see it.”</i><br>
With this adage Start-up cell is going to conduct an online event Premise & Surmise,to state your prognostications !!
It's an engaging event, where you make bold statements, crafting a hypothesis to address an open question or problem in a rationalized, thought full proposal. In the end, winners of the event will be honored and accorded as per their merit.</p>
</div>
<h3 class="text-center" style="font-family: 'Playfair Display SC', serif;">Technical<span class="badge badge-secondary" data-toggle="modal" data-target="#staticBackdrop" style="background-color:#7cc576">Entry</span></h3>
<br>
<div class="row mt-2">
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/tech1.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/tech4.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/tech5.jpg" class="card-img-top" alt="...">
</div>
</div>
</div>
<br>
<h3 class="text-center" style="font-family: 'Playfair Display SC', serif;">Non-Technical
<span class="badge badge-secondary" data-toggle="modal" data-target="#Backdrop" style="background-color:#7cc576">Entry</span></h3>
<br>
<div class="row mt-2">
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/ntech1.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/ntech2.jpg" class="card-img-top" alt="...">
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/ntech3.jpg" class="card-img-top" alt="...">
</div>
</div>
</div>
<!-- Modal for technical -->
<div class="modal fade" id="staticBackdrop" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">✓-should be ✘-upto you</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Proper problem statement</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Defining hypothesis</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>No vague Conclusions </li>
<li class="text-muted"><span class="fa-li"><i class="fa fa-check"></i></span>Graphical representation
</li>
<li class="text-muted"><span class="fa-li"><i class="fa fa-times"></i></span>Mathematical deductions
</li>
<li class="text-muted"><span class="fa-li"><i class="fa fa-times"></i></span>Practical implementation
</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" style="background-color:#7cc576">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal for non-technical -->
<div class="modal fade" id="Backdrop" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">✓-should be ✘-upto you</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Proper problem statement</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Defining hypothesis</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>No vague Conclusions </li>
<li><span class="fa-li"><i class="fa fa-times"></i></span>Graphical representation</li>
<li class="text-muted"><span class="fa-li"><i class="fa fa-times"></i></span>Mathematical deductions
</li>
<li class="text-muted"><span class="fa-li"><i class="fa fa-times"></i></span>Practical implementation
</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" style="background-color:#7cc576">Close</button>
</div>
</div>
</div>
</div>
</section><!-- End Premise Section -->
<hr>
<!..................................................................>
<br>
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<a href="#header" class="scrollto footer-logo"><img src="assets/img/logo.png" alt=""></a>
<br>
<h5 class="mt-2"> IISC,Knit Sultanpur</h5>
<p>Everyone has at least one idea for the next big thing. With the objective to encourage these ideas in their true form, the start-up cell is established. We are having our Innovation , Incubation and Start-up cell office in KNIT, Sultanpur. Our mission is to Spread innovation and entrepreneurship skills among students.</p>
</div>
</div>
<div class="social-links">
<a href="https://twitter.com/IiscKnit" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="https://www.facebook.com/startupcell.knit" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/iiscknit/" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/in/iisc-knit-sultanpur-a675611b6" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<div class="container footer-bottom clearfix">
<div class="copyright">
© Copyright <strong><span>IISC</span></strong>. All Rights Reserved
</div>
<div class="credits">
Web Operations Team <span>|</span>IISC,Knit Sultanpur
</div>
</div>
</footer>
</main><!-- End #main -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/eventvendor/jquery/jquery.min.js"></script>
<script src="assets/eventvendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/eventvendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/eventvendor/php-email-form/validate.js"></script>
<script src="assets/eventvendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/eventvendor/counterup/counterup.min.js"></script>
<script src="assets/eventvendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/eventvendor/venobox/venobox.min.js"></script>
<script src="assets/eventvendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/eventvendor/typed.js/typed.min.js"></script>
<script src="assets/eventvendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/eventmain.js"></script>
</body>
</html>