-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·712 lines (677 loc) · 25.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="icon" href="img/csi-logo.png" />
<title>CSI-DTU</title>
<!-- For tab coloring in-->
<!--chrome firefox OS Opera-->
<meta name="theme-color" content="#626A6D" />
<!--Windows Phone-->
<meta name="msapplication-navbutton-color" content="#626A6D" />
<!--iOS Safari-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<!-- Google font -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:400,700,900"
rel="stylesheet"
/>
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Owl Carousel -->
<link type="text/css" rel="stylesheet" href="css/owl.carousel.css" />
<link type="text/css" rel="stylesheet" href="css/owl.theme.default.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Header -->
<header id="header" class="transparent-navbar">
<!-- container -->
<div class="container">
<!-- navbar header -->
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a class="logo" href="index.html">
<img
class="logo-img"
src="./img/csi-logo.png"
alt="logo"
style="min-height: 55px; min-width: 55px;"
/>
<img
class="logo-alt-img"
src="./img/csi-logo.png"
alt="logo"
style="min-height: 55px; min-width: 55px;"
/>
</a>
</div>
<!-- /Logo -->
<!-- Mobile toggle -->
<button class="navbar-toggle"><i class="fa fa-bars"></i></button>
<!-- /Mobile toggle -->
</div>
<!-- /navbar header -->
<!-- Navigation -->
<nav id="nav">
<ul class="main-nav nav navbar-nav navbar-right">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Invictus</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- /Navigation -->
</div>
<!-- /container -->
</header>
<!-- /Header -->
<!-- Home -->
<div id="home">
<!-- background image -->
<div
class="section-bg"
style="background-image:url(./img/dtucampus.jpg)"
data-stellar-background-ratio="0.5"
></div>
<!-- /background image -->
<!-- home wrapper -->
<div class="home-wrapper">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- home content -->
<div class="col-md-8 col-md-offset-2">
<div class="home-content">
<h1>Welcome to CSI-DTU!</h1>
<h4 class="lead">Scroll down to explore!</h4>
</div>
</div>
<!-- /home content -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /home wrapper -->
</div>
<!-- /Home -->
<!-- About -->
<div id="about" class="section" style="background-color: #ffcd63;">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title">
<span>About</span> <span style="color: #dd0a37;">Us</span>
</h3>
</div>
<!-- /section title -->
<div class="col-md-8 col-md-offset-2 text-center">
<!-- about content -->
<div class="about-content">
<p>
Founded in 2000, CSI is the oldest technical society in DTU. We
aim to provide a platform to learn and share knowledge,
inculcate technical skills among students through IDGs,
encourage junior-senior interaction and provide exposure to
technical events.
</p>
<p>
CSI has been instrumental in guiding the Indian IT industry down
the right path since its formative years. Today, the CSI has 71
chapters all over India, 418 student branches, and more than
90000 members including India's most famous IT industry leaders,
brilliant scientists and dedicated academicians.
</p>
</div>
<!-- /about content -->
</div>
</div>
<!-- row -->
</div>
<!-- /container -->
</div>
<!-- /About -->
<!-- Galery -->
<div id="galery" style="margin-top: 60px; margin-bottom: 30px;">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title">
<span>Some</span> <span style="color: #dd0a37;">Glimpses</span>
</h3>
</div>
</div>
<!-- row -->
<!-- row -->
<div class="row">
<!-- galery owl -->
<div id="galery-owl" class="owl-carousel owl-theme">
<!-- galery item -->
<div class="galery-item"><img src="./img/car2.jpg" alt="" /></div>
<!-- /galery item -->
<!-- galery item -->
<div class="galery-item"><img src="./img/car3.jpg" alt="" /></div>
<!-- /galery item -->
<!-- galery item -->
<div class="galery-item"><img src="./img/car4.png" alt="" /></div>
<!-- galery item -->
<div class="galery-item"><img src="./img/car1.jpg" alt="" /></div>
<!-- /galery item -->
<!-- galery item -->
<div class="galery-item"><img src="./img/car6.jpg" alt="" /></div>
<!-- /galery item -->
<!-- galery item -->
<div class="galery-item"><img src="./img/car7.jpg" alt="" /></div>
<!-- /galery item -->
</div>
<!-- /galery owl -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Galery -->
<!-- Event Schedule -->
<div id="schedule" class="section" style="background-color: #a9ffa3;">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title">
<span>Invictus</span>
<span style="color: #dd0a37;">Schedule</span>
</h3>
</div>
<!-- /section title -->
<div class="col-md-8 col-md-offset-2">
<div class="events-wrapper">
<!-- event -->
<div class="event" align = "left">
<div class="event-day">
<div>
<span class="day">24 -7</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p>
<i class="fa fa-map-marker"></i>
<a href="https://www.facebook.com/dtu.csi/">CSI Facebook Page</a>
</p>
<h3 class="event-title">Troll It</h3>
<p>
Memes are the driving force in the world. A good meme can do wonders, even swing elections!
Troll It is an online contest conducted on our Facebook page!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-day">
<div>
<span class="day">1 -7</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> 8:00 PM</p>
<p><i class="fa fa-map-marker"></i><a href="#"> Cryptex website</a></p>
<h3 class="event-title">Cryptex</h3>
<p>For every set of images there exists a clue and all you have to do is to put on your sherlock hats to find a one word answer which can win you exciting goodies.</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
All Day
</p>
<p>
<i class="fa fa-map-marker"></i>
<a href="#">TechWiz website</a>
</p>
<h3 class="event-title">Tech Wiz Prelims</h3>
<p>
Time to put your computer science skills to test with this fun quiz targetting OS, DBMS, CN and more subjects!
Prelims conducted in both online and offline style.
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-day">
<div>
<span class="day">8</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
2:00 PM - 5:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Bid Bash</h3>
<p>
Bid Bash is an onsite event conducted in teams of 2-4 where each team bids on different football players to make the strongest team!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
All Day
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Tech Wiz Prelims</h3>
<p>
Time to put your computer science skills to test with this fun quiz targetting OS, DBMS, CN and more subjects!
Prelims conducted in both online and offline style.
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
All Day
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Neuvo Gengo and Cranium Prelims</h3>
<p>
A preliminary pen-paper C/C++ quiz with questions which are a little off from the contemporary ones you encounter daily!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
All Day
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Mathrix Prelims</h3>
<p>
A pen-paper mathematical aptitude quizzing event to serve as preliminaries to the finals!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
All Day
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Sudo Code Prelims</h3>
<p>
An event that combines the fun of solving sudoku and running your code!
Write the output of 9 code snippets in 9 empty rows of sudoku. Once you're done, proceed to solve the sudoku.
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-day">
<div>
<span class="day">9</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
12:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
CN Lab
</p>
<h3 class="event-title">Cranium Finals</h3>
<p>
A time, efficiency and performance based online programming contest. 3 questions. 90 minutes. Are you game?
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
12:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
DBMS Lab
</p>
<h3 class="event-title">Neuvo Gengo Finals</h3>
<p>
You're given a new language and it's documentation 15 minutes before the contest starts. Can you code 3 questions and a bonus question under 2 hours in this new language?
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
2:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Sudo Code Finals</h3>
<p>
Harder code snippets, lesser time and raising the difficulty level of the sudoku!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
2:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Mathrix Finals</h3>
<p>
Bring in difficult questions and a side of logical reasoning please!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left">
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
3:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
DTU
</p>
<h3 class="event-title">Tech Wiz Finals</h3>
<p>
Questions are tough and the format is quizmaster style. Let's see who survives till the very last!
</p>
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event" align = "left" style = "margin-bottom: -30px">
<div class="event-day">
<div>
<span class="day">10</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p class="event-time">
<i class="fa fa-clock-o"></i>
12:00 PM
</p>
<p>
<i class="fa fa-map-marker"></i>
IT Seminar Hall
</p>
<h3 class="event-title">Valedictory Ceremony</h3>
</div>
</div>
<!-- /event -->
</div>
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Event Schedule -->
<!-- Sponsors -->
<div id="sponsors" class="section" style = "padding: 65px 0px">
<!-- container -->
<div class="container">
<!-- section title -->
<div class="section-title">
<h3 class="title">
<span>Our</span> <span style="color: #dd0a37;">Sponsors </span> and <span style="color: #dd0a37;"> Partners</span>
</h3>
</div>
<!-- /section title -->
<div class="row">
<!-- sponsor -->
<div class="col-md-3 col-sm-4 col-xs-6">
<p>
<div style="padding-bottom: 1.8em">Outreach Partner</div>
<a href="https://www.faad.in/" class="sponsor">
<img src="./img/faad logo.png" style = "width: 60%" alt="Faad Logo">
</a>
</p>
</div>
<!-- /sponsor -->
<div class="col-md-3 col-sm-4 col-xs-6">
<p>
<div style="padding-bottom: 1.8em">Platform Partner</div>
<a href="https://www.hackerearth.com/" class="sponsor">
<img src="./img/HE_logo.png" alt="HE Logo">
</a>
</p>
</div>
<!-- /sponsor -->
<!-- /sponsor -->
<div class="col-md-3 col-sm-4 col-xs-6">
<p>
<div style="padding-bottom: 1.8em">Event Partner</div>
<a href="https://www.showbie.com/" class="sponsor">
<img src="./img/showbie_logo.png" alt="HE Logo" style="width:60%">
</a>
</p>
</div>
<!-- /sponsor -->
</div>
<div style = "margin-top: 1.5em">
View our
<a
href="http://bit.ly/CsiDtuInvictusSponsorship"
target="_blank"
class="btn btn-info"
style="font-weight: bold"
>
Sponsorship Brochure
</a>
and get to know the benefits of sponsoring our events in INVICTUS
2019!
</div>
</div>
<!-- /container -->
</div>
<!-- /Sponsors -->
<!-- Contact -->
<div id="contact" class="section" style="padding: 50px 0px">
<!-- background image -->
<div class="section-bg" style="background-color: #8baee8;"></div>
<!-- /background image -->
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title">
<span style="color: #000000;">Contact</span>
<span style="color: #dd0a37;">Info</span>
</h3>
</div>
<!-- /section title -->
<!-- contact -->
<div class="col-sm-3">
<div class="contact">
<h3>Parikshit Hooda</h3>
<p>+91-9654665754</p>
<p>[email protected]</p>
</div>
</div>
<!-- /contact -->
<!-- contact -->
<div class="col-sm-3">
<div class="contact">
<h3>Aditya Malhotra</h3>
<p>+91-9582424209</p>
<p>[email protected]</p>
</div>
</div>
<!-- /contact -->
<!-- contact -->
<div class="col-sm-3">
<div class="contact">
<h3>Dev Swaroop</h3>
<p>+91-9650965505</p>
<p>[email protected]</p>
</div>
</div>
<!-- /contact -->
<!-- contact -->
<div class="col-sm-3">
<div class="contact">
<h3>Nikhil Kr. Singh</h3>
<p>+91-7836913485</p>
<p>[email protected]</p>
</div>
</div>
<!-- /contact -->
</div>
<!-- /row -->
</div>
<!-- /container -->
<!-- Map -->
<!-- <div id="map"></div> -->
<!-- /Map -->
</div>
<!-- /Contact -->
<!-- Footer -->
<footer id="footer" style="padding: 40px 0px">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- footer logo -->
<div class="col-md-4 col-md-push-4">
<div class="footer-brand">
<a class="logo" href="index.html">
<img
class="logo-img"
src="./img/csi-logo.png"
alt="logo"
style="min-height: 80px; min-height: 80px;"
/>
</a>
</div>
</div>
<!-- /footer logo -->
<!-- contact social -->
<div class="col-md-4 col-md-push-4">
<div class="contact-social">
<a href="http://facebook.com/dtu.csi"
><i class="fa fa-facebook"></i
></a>
<a href="https://github.com/CSI-DTU"
><i class="fa fa-github"></i
></a>
</div>
</div>
<!-- /contact social -->
<!-- copyright -->
<div class="col-md-4 col-md-pull-8">
<span class="copyright"
><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>
document.write(new Date().getFullYear());
</script>
All rights reserved | This template is made with
<i class="fa fa-heart-o" aria-hidden="true"></i> by
<a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></span
>
</div>
<!-- /copyright -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</footer>
<!-- /Footer -->
<!-- jQuery Plugins -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/jquery.countTo.js"></script>
<script src="js/main.js"></script>
</body>
</html>