-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
574 lines (495 loc) · 22.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DSC IITP</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link rel="shortcut icon" href="./img/logo.png">
<link rel="apple-touch-icon-precomposed" href="./img/logo.png">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700|Open+Sans:300,300i,400,400i,700,700i"
rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Main Stylesheet File -->
<link href="css/style.css?version=1" rel="stylesheet">
<style>
@media only screen and (max-width: 768px) {
.desktop {
display: none;
}
.mobile {
display: inline;
}
}
@media only screen and (min-width: 768px) {
.mobile {
display: none;
}
.desktop {
display: inline;
}
}
@media only screen and (min-width: 1525px) {
.mobile {
display: none;
}
}
.announcement-header {
font-size: 32px;
color: #111;
text-transform: uppercase;
text-align: center;
font-weight: 700;
position: relative;
padding-bottom: 15px;
}
.announcement-header::before {
content: '';
position: absolute;
display: block;
width: 120px;
height: 1px;
background: #ddd;
bottom: 1px;
left: calc(50% - 60px);
}
.announcement-header::after {
content: '';
position: absolute;
display: block;
width: 40px;
height: 3px;
background: #18d26e;
bottom: 0;
left: calc(50% - 20px);
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
xfbml: true,
version: 'v3.3'
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your customer chat code -->
<div class="fb-customerchat" attribution=setup_tool page_id="2181729528574999">
</div>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<h1><a href="./"><img src="img/logo.png" alt="" title="" width="70%" id='logoimg'></a></h1>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="./">Home</a></li>
<li><a href="./#about">About Us</a></li>
<li><a href="./gallery.html">Gallery</a></li>
<li><a href="./team.html">Team</a></li>
<li><a href="./#contact">Contact Us</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./leaderboard.html">Leaderboard</a></li>
<li><a href="./timeline.html">Timeline</a></li>
<!-- <li><a href="./hackathon.php">Hackathon</a></li>-->
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-text">
<h2>DSC IIT Patna</h2>
<p>Empowering student developers to create impact for a better tomorrow</p>
<div class="container">
<div class="row">
<div class="col-ld-12 col-md-12 col-sm-12 col-xs-12 text-center">
<a href="./projects.html" class="btn-get-started scrollto">View Projects</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScLhe6GrLKCzUmXK8KUSCX_DUYaRXHYkPNtxlQJ2aOPzZCaIA/viewform?usp=sf_link"
target="_blank" class="btn-get-started scrollto">Submit A Project Idea</a>
</div>
</div>
</div>
</div>
</section><!-- #intro -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about" class="section-bg">
<div class="container">
<img class="clip" src="img/cliparts.png">
<div class="section-header">
<h3 class="section-title">About Us</h3>
<!-- <span class="section-divider"></span>-->
<p class="section-description">
Developer Student Clubs IIT Patna, powered by Google Developers, is a non-profit community that
aims to inspire intelligent minds in the field of technology. It provides opportunities where developers,
designers and managers work together to carry out real-time projects.
<br>
<br>
It is open to any student, ranging from novice
developers who are just starting to advanced developers who want to further their skills. It is intended to
be a space for
students to learn and collaborate as they solve real-world problems.
In a desire to introduce creativity into technology, designers at DSC collaborate with the developers and
managers to bring
out effective executions. Students here have worked on real-time projects that use Web dev, ML, Blockchains,
IOT and much more
making us one of the best technical chapters of IIT Patna.
<br>
<br>
DSC IITP boasts of a very diverse community with members from various disciplines of engineering working
together and
developing themselves for the future. Here at DSC IITP, students get to work with a remarkably dedicated
group of developers, make
projects, organise workshops, represent us in hackathons and much more. We encourage every member regardless
of his/her domain
of enrolment to work on projects and learn to develop new skills. Students also get to interact with
industry experts from Google who are
constantly in touch with us and guide us.
</p>
</div>
</div>
</section><!-- #about -->
<!--==========================
Call To Action Section
============================-->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-center ">
<h3 class="cta-title">10+</h3>
<p class="cta-text">PROJECTS </p>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-center ">
<h3 class="cta-title">20+</h3>
<p class="cta-text">MEETUPS</p>
</div>
<!--<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3 text-center ">
<h3 class="cta-title">40+</h3>
<p class="cta-text">EVENTS</p>
</div>-->
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-center ">
<h3 class="cta-title">1</h3>
<p class="cta-text">VISION</p>
</div>
</div>
</div>
</section>
<!-- #call-to-action -->
<!--==========================
Announcements Section
============================-->
<section id="features">
<div class="container wow fadeInRight">
<h3 class="text-center announcement-header" style="text-decoration: none">Announcements</h3>
<div class="container">
<h5 style="text-decoration: underline"><i class='fas fa-check-circle text-success'></i> DSC Leaderboard has
been setup.</h5>
<p>Students can now view their respective points on the leaderboard. <br>
<small>2019-07-10 17:29:50</small>
</p>
</div>
<div class="container">
<h5 style="text-decoration: underline"><i class='fas fa-check-circle text-success'></i> DSC's website has been
completed successfully!!!</h5>
<p>Hola folks! DSC IIT-P feels immense joy to announce that our website has been fully developed and its in
complete working condition.<br>
<small>2019-07-10 17:28:12</small>
</p>
</div>
</div>
</section><!-- #features -->
<!--==========================
Product Advanced Featuress Section
============================-->
<section id="advanced-features">
<div class="features-row section-bg">
<div class="container">
<div class="row">
<div class="col-12">
<img class="advanced-feature-img-left wow fadeInLeft" src="img/advanced-feature-2.jpg" alt="">
<div class="wow fadeInRight">
<h2> The students get the opportunity to:</h2>
<i class="ion-ios-paper-outline" class="wow fadeInRight" data-wow-duration="0.5s"></i>
<p class="wow fadeInRight" data-wow-duration="0.5s">Grow their knowledge on developer technologies and
more through peer to peer workshops and events.</p>
<i class="ion-ios-color-filter-outline wow fadeInRight" data-wow-delay="0.2s"
data-wow-duration="0.5s"></i>
<p class="wow fadeInRight" data-wow-delay="0.2s" data-wow-duration="0.5s">Gain relevant industry
experience by solving problems for local organizations with technology based solutions.</p>
<i class="ion-ios-barcode-outline wow fadeInRight" data-wow-delay="0.4" data-wow-duration="0.5s"></i>
<p class="wow fadeInRight" data-wow-delay="0.4s" data-wow-duration="0.5s">Showcase their prototypes and
solutions to their local community and industry leaders.</p>
</div>
</div>
</div>
</div>
</div>
<!--<div class="features-row section-bg">
<div class="container">
<div class="row">
<div class="col-12">
<img class="advanced-feature-img-right wow fadeInRight" src="img/advanced-feature-3.jpg" alt="">
<div class="wow fadeInLeft">
<h2>Duis aute irure dolor in reprehenderit in voluptate velit esse</h2>
<h3>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<i class="ion-ios-albums-outline"></i>
<p>Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
</div>
</div>
</div> -->
</section><!-- #advanced-features -->
<!--==========================
Videos Section
============================-->
<section id="features">
<div class="container">
<div class="row">
<div class="col-lg-4 wow fadeInLeft" style="padding:10px 15px 15px 10px;">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/RnWWBusoySs" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="col-lg-4 wow fadeInRight" style="padding:10px 15px 15px 10px;">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/wTLe8nwJ_Lw" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="col-lg-4 wow fadeInRight" style="padding:10px 15px 15px 10px;">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/uxDuZs9k8B0" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</section>
<!--==========================
Social Section
============================-->
<section id="social" class="section-bg">
<div class="container">
<div class="section-header">
<h3 class="section-title">Social</h3>
<!--<span class="section-divider"></span>-->
<p class="section-description"></p>
</div>
<div class="row">
<div class="col-lg-4">
<div class="box wow fadeInLeft">
<div style="margin: 20px 0">
<iframe
src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fdsciitpatna%2F%3F__tn__%3D%252CdkC-y.g-R%26eid%3DARALxTPcGtjxlp3B9MGmnC73Ol4fJzWTRbBv_Lz-wITcjCAa2Ctc33j-hSs7lJkg6kjBETZ0kdwuCgwn%26hc_ref%3DARQRs_qR1gWmuGCtB5fl_dxXtPf-Izype3sJgcboW2eIWoFMSYeh4SVxoVKXzuxzQQQ%26fref%3Dnf&tabs=timeline&width=340&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId"
style="border:none; margin: 0; padding: 0; overflow:hidden; width:100%; height:400px" scrolling="no"
frameborder="0" allowTransparency="true" allow="encrypted-media">
</iframe>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="box wow fadeInLeft">
<div style="margin: 20px 0">
<a class="twitter-timeline" data-width="340" data-height="400"
href="https://twitter.com/dsciitpatna?ref_src=twsrc%5Etfw">Tweets by dsciitpatna</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="box wow fadeInLeft">
<script src="https://apps.elfsight.com/p/platform.js" defer></script>
<div class="elfsight-app-a9e70b33-d43a-4ee9-8aad-5cf0b9c3d0f5"></div>
</div>
</div>
</div>
</section><!-- #social -->
<!--==========================
Map Section
============================-->
<!-- <section id="map" style="height: calc( 60vh )">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14399.37835508978!2d84.8434447170254!3d25.54355318850096!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x398d567a193702ff%3A0xc9c527c7faec3056!2sIIT+Patna+Administration+Block!5e0!3m2!1sen!2sin!4v1539177184721"
width="100%" height="100%" frameborder="0" style="border: 0" allowfullscreen>
</iframe>
</section> -->
<!--==========================
Contact Section
============================-->
<section id="contact">
<div class="container-fluid">
<div class="fadeInUp d-flex centre">
<div class="col-lg-2 col-md-2">
<div class="desktop">
<img src="img/indiarot.png" style="width:8em;height:18em; float:right;">
</div>
</div>
<div class="col-lg-3 col-md-3">
<div class="contact-about">
<div class="mobile">
<img id="mobile" src="img/india (1).png" style="width:18em;height:7em;float:left;">
</div>
<h3>DSC IIT Patna</h3>
<p style="text-align:justify;">We at DSC IITP believe in building a strong community where people can
learn and grow together. Our goal is to combine new ideas with technical skills
to build something innovative and exemplary. Share your ideas with us and be a part of this amazing
family . #Join_Us !!! </p>
<div class="social-links">
<a href="https://twitter.com/dsciitpatna" class="twitter" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/dsciitpatna/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/dsciitpatna/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/dsciitpatna/about/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div class="mobile">
<div class="info">
<div>
<i class="ion-ios-location-outline"></i>
<p>Indian Institute of Technology Patna<br> Bihta, Patna -801106 (Bihar)</p>
</div>
<div>
<i class="ion-ios-email-outline"></i>
<p>[email protected]</p>
</div>
<!-- <div>
<i class="ion-ios-telephone-outline"></i>
<p>+1 5589 55488 55s</p>
</div> -->
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3">
<div class="desktop">
<div class="info">
<div>
<i class="ion-ios-location-outline"></i>
<p>Indian Institute of Technology Patna<br> Bihta, Patna -801106 (Bihar)</p>
</div>
<div>
<i class="ion-ios-email-outline"></i>
<p>[email protected]</p>
</div>
<!--<div>
<i class="ion-ios-telephone-outline"></i>
<p>+1 5589 55488 55s</p>
</div>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- #contact -->
<!--==========================
hackathon
============================-->
<!--<section id="hackathon">
<div class="container">
<div class="row justify-content-center">
<h2>Hack O'Latte</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid sit eum libero necessitatibus, ipsa fuga facilis modi magni, quam reprehenderit ducimus nulla similique ipsam debitis consectetur inventore aut, possimus magnam? Veritatis, rem fuga a aperiam deserunt obcaecati nobis neque, amet porro blanditiis earum hic qui quo. Error iure, incidunt hic ex similique tempora ullam eligendi dolore id et enim, facere dignissimos expedita voluptas omnis repudiandae ipsa sunt eos ea animi distinctio exercitationem. Exercitationem quasi, cumque laudantium odit reprehenderit perspiciatis nulla voluptatem doloribus dolore soluta delectus quaerat recusandae, obcaecati, a vitae inventore tenetur sint aut facilis nihil hic nesciunt! Libero, minima.</p>
<a href="./hackathon.php" class="btn scrollto">Click here</a>
</div>
</div>
</section>
</main>-->
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3">
<strong>Quick Links:</strong>
<br><br>
<a href="https://www.iitp.ac.in/" target="_blank">IIT Patna</a>
<br>
<a href="https://www.iitp.ac.in/hostel/reachIITP.html" target="_blank">Reach Us</a>
<br>
<br>
<br>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<strong>Social Links:</strong>
<br><br>
<a href="https://www.facebook.com/dsciitpatna/" target="_blank">
<i class="fa fa-facebook-square">
</i>
Developer Student Club
</a>
<br>
<a href="https://www.facebook.com/iitp.ac.in/" target="_blank">
<i class="fa fa-facebook-square">
</i>
IIT Patna
</a>
<br>
<br>
<br>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<strong>Back To:</strong>
<br><br>
<a href="#" class="scrollto">Home</a>
<br>
<a href="./projects.html" class="scrollto">Projects</a>
<br>
<br>
<br>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<strong>Copyright ©</strong>
<br>
<strong>Developer Student Club</strong>
<br>
<strong>Indian Institute of Technology, Patna</strong>
<br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScLhe6GrLKCzUmXK8KUSCX_DUYaRXHYkPNtxlQJ2aOPzZCaIA/viewform?usp=sf_link"
target="_blank" class="btn-get-started scrollto">Submit A Project Idea</a>
</div>
<br><br>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/magnific-popup/magnific-popup.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>