-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
675 lines (608 loc) · 29.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>GDSC VSSUT</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicons -->
<link href="img/DSC PNG.png" rel="icon" />
<link href="img/DSC PNG.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ===================================== pre-loader start =========================== -->
<div id="preloader">
<div class="boxes cen">
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<!-- ===================================== pre-loader ends =========================== -->
<!--==========================
Header
============================-->
<header id="header" class="fixed-top">
<div class="container">
<div class="logo float-left">
<a href="index.html" class="scrollto"><img src="img/logo/gdsc-logo-svg-nbg.svg" alt="" class="img-fluid" /></a>
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li class="active"><a href="#intro">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#service">What We Do</a></li>
<li><a href="#services">Events</a></li>
<li><a href="teamselector.html">Our Team</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
<!-- .main-nav -->
</div>
</header>
<!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro" class="clearfix">
<div class="container">
<div class="intro-info">
<h2>Get ready to dive into the world of developers</h2>
<div>
<a href="https://dsc.community.dev/accounts/login/?next=/veer-surendra-sai-university-of-technology/" target="_blank" class="btn-get-started scrollto">Join us</a>
<a href="https://discord.gg/WvmyHkBus9" target="_blank" class="btn-get-started dis">Discord</a>
<!-- <a href="#services" class="btn-services scrollto">Our Services</a> -->
</div>
</div>
</div>
</div>
</section>
<!-- #intro -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about" class="clearfix">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h3 class="section-title">About US</h3>
</header>
<div class="row h-100 justify-content-around align-items-center holds">
<div class="col-lg-6 col-md-12 services-left-image wow fadeInUp">
<img src="img/logo/about_us.jpg" class="img-fluid" alt="" />
</div>
<div class="col-lg-6 col-md-12 content order-lg-1 order-2 wow fadeInUp">
<div id="p_about"style="margin-left: 20px;text-align:center;margin-top:15px;">
<p style="font-family:'Open Sans', sans-serif;font-weight:normal;">Google Developer Student Clubs or
GDSC is a program started by google to train individuals around the world to
learn about a wide range of technical topics and gain new skills though hands-on workshops, in person
training and project building activities. GDSC VSSUT was primarily set up to help students advance their
skills,career and network. We are a team of passionate individuals who share a common objective of
finding cutting edge solutions to day-to-day problems. We are eager to try new ideas and are dedicated
to provide a friendly environment for students to grow their knowledge in a peer-to-peer learning
atmosphere and collaborate to build impactful solutions.</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- #About Us -->
<!--==========================
What We Do Section
============================-->
<section id="service" class="">
<div class="container">
<header class="section-header">
<h3>What We Do</h3>
<p>
GDSC VSSUT boasts of a multifaceted community with members from various disciplines working together. By
joining GDSC VSSUT students get to work with an exceptionally skilled group of developers, connect with
developers around the world, make projects,organized workshops and many more.
</p>
</header>
<div class="pro_title wrk wow fadeInUp">
<h3><b>We Work On: </b></h3>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p> -->
</div>
<div class="row h-100 justify-content-center align-items-center">
<div class="col-lg-6 col-md-12 services-content">
<div class="row mb-3">
<div class="col-lg-6 col-md-6 wow fadeInUp">
<div class="box">
<div class="icon">
<i class="fa fa-android" style="color: #2C5364"></i>
</div>
<h6 class="title">Android Development</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp">
<div class="box">
<div class="icon">
<i class="fa fa-code" style="color:#2C5364"></i>
</div>
<h6 class="title">Machine Learning</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="box">
<div class="icon">
<i class="fa fa-globe" style="color: #2C5364"></i>
</div>
<h6 class="title">Web Development</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="box">
<div class="icon">
<i class="fa fa-mobile" style="color: #2C5364"></i>
</div>
<h6 class="title">Flutter Development</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="box">
<div class="icon">
<i class="fa fa-terminal" style="color: #2C5364"></i>
</div>
<h6 class="title">AR / VR</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="box">
<div class="icon">
<i class="fa fa-cloud" style="color: #2C5364"></i>
</div>
<h6 class="title">Cloud Computing</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="box">
<div class="icon">
<i class="fa fa-google" style="color:#2C5364"></i>
</div>
<h6 class="title">Competitive Coding</h6>
</div>
</div>
<div class="col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="box">
<div class="icon">
<i class="fa fa-pencil" style="color: #2C5364"></i>
</div>
<h6 class="title">UX / UI design</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 services-left-image wow fadeInUp">
<img src="img/logo/wht_we_do.jpg" class="img-fluid" alt="" />
</div>
</div>
<!-- projects section strt -->
<div class="project_section">
<div class="pro_title skill wow fadeInUp">
<h3><b>Skill Ups</b></h3>
<p>These are the major skill ups conducted under GDSC.</p>
</div>
<div class="proj_cards">
<main class="page-content">
<div class="card_pr wow fadeInUp">
<div class="content_pr">
<h2 class="title_pr">30 Days of Google Cloud</h2>
<p class="copy_pr"><b>From 5 OCT to 5 NOV</b></p>
<a href="googlecloud.html" target="_blank"><button class="btn_pr">Know more</button></a>
</div>
</div>
<div class="card_pr wow fadeInUp">
<div class="content_pr">
<h2 class="title_pr">Android Study Jams: Kotlin</h2>
<p class="copy_pr"><b>From 25 NOV to 25 JAN</b></p>
<a href="android.html" target="_blank"><button class="btn_pr">Know more</button></a>
</div>
</div>
<div class="card_pr wow fadeInUp">
<div class="content_pr">
<h2 class="title_pr" style="padding:10px;">Exploring ML</h2>
<p class="copy_pr"><b>Upcoming Skill</b></p>
<a href="expml.html" target="_blank"><button class="btn_pr" disabled>Coming Soon</button></a>
</div>
</div>
<div class="card_pr wow fadeInUp">
<div class="content_pr">
<h2 class="title_pr">Solution Challenge</h2>
<p class="copy_pr"><b>Upcoming Skill</b></p>
<a href="challange.html" target="_blank"><button class="btn_pr" disabled>Coming Soon</button></a>
</div>
</div>
</main>
</div>
</div>
</div>
</section>
<!--==========================
Portfolio Section
============================-->
<section id="services" class="section-bg">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h3>Events</h3>
<p>We conduct regular events including tech talks and workshops to make students familiar with latest tech advancements and programs.</p>
</header>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/thirteen.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-world-telecommunication-and-information-society-day-2021/" target="_blank">Tech Talk</a></h4>
<p class="description"><b>Speaker Session Virtual</b></p>
<p class="description">World Telecommunication and Information Society Day 2021</p>
<p class="description"><b>Date: </b>MAY 17, 2021</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/twelve.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-hack-the-solution-virtual-hackathon/" target="_blank">Solution Challange</a></h4>
<p class="description"><b>Solution Challange</b></p>
<p class="description">Solution Virtual Hackathon</p>
<p class="description"><b>Date: </b>MAR 27, 2021</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/eleven.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-liftoff-c/" target="_blank">Lift-Off-C</a></h4>
<p class="description"><b>Lift Off-C</b></p>
<p class="description">Hand-on Workshop - Virtual</p>
<p class="description"><b>Date: </b>FEB 1, 2021</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/ten.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-diving-into-android-session-2/" target="_blank">Info Session</a></h4>
<p class="description"><b>Prior Programming Exp-Virtual</b></p>
<p class="description">Diving Into Android - Session 2</p>
<p class="description"><b>Date: </b>JAN 22, 2021</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/nine.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-get-to-know-about-us/" target="_blank">Info Session</a></h4>
<p class="description"><b>Info Session - Virtual</b></p>
<p class="description">Get to know about us!</p>
<p class="description"><b>Date: </b>JAN 4, 2021</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/eight.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-diving-into-android-session-1/" target="_blank">Android Study Jams</a></h4>
<p class="description"><b>New to Programming-virtual</b></p>
<p class="description">Diving Into Android - Session 1</p>
<p class="description"><b>Date:</b> DEC 11,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/seven.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-dsc-wow-indias-biggest-collaboration-prizes-worth-10-lakhs/" target="_blank">DSC WOW</a></h4>
<p class="description"><b>Hackathon - virtual</b></p>
<p class="description">India's Biggest Collaboration | Prizes Worth 10 Lakhs</p>
<p class="description"><b>Date: </b>DEC 7,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/six.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-android-study-jam-info-session/" target="_blank">Android Study Jams</a></h4>
<p class="description"><b>Info Session - virtual</b></p>
<p class="description">Android Study Jams - Info Session</p>
<p class="description"><b>Date: </b>DEC 2,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/five.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-coding-open-source-project/" target="_blank">Tech Talk</a></h4>
<p class="description"><b>Speaker Session - Virtual</b></p>
<p class="description">Coding and Open Source Project</p>
<p class="description"><b>Date: </b>Nov 21,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/four.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-get-it-done-with-the-experts/" target="_blank">Tech Talk</a></h4>
<p class="description"><b>Speaker Session - Virtual</b></p>
<p class="description">Get it down with the Expert</p>
<p class="description"><b>Date: </b>NOV 15,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/three.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-hacktoberfest-meetup-dsc-vssut-git-and-github/" target="_blank">Hands On Workshop</a></h4>
<p class="description"><b>Workshop - Virtual</b></p>
<p class="description">Hacktoberfest Meetup - GIT and GitHub</p>
<p class="description"><b>Date: </b>OCT 13,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/two.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-dsc-vssut-hacktoberfest-meetup/" target="_blank">Tech Talk</a></h4>
<p class="description"><b>Speaker Session - Virtual</b></p>
<p class="description">Hacktoberfest Meetup - GSOC</p>
<p class="description"><b>Date: </b>OCT 2,2020</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5" data-aos="zoom-in" data-aos-delay="500">
<div class="box">
<div class="left">
<div class="img"> <img src="./img/events/one.png" alt=""> </div>
</div>
<div class="right">
<h4 class="title"><a href="https://dsc.community.dev/events/details/developer-student-clubs-veer-surendra-sai-university-of-technology-presents-info-session-dsc-vssut/" target="_blank">Info Session</a></h4>
<p class="description"><b>Info Session - Virtual</b></p>
<p class="description">DSC VSSUT Chapter info session</p>
<p class="description"><b>Date: </b>SEP 27, 2020</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Contact Section
============================-->
<section id="contact">
<div class="container-fluid">
<div class="section-header">
<h3>Contact Us</h3>
</div>
<div class="row wow fadeInUp">
<div class="col-lg-6">
<div class="map mb-4 mb-lg-0">
<iframe src="https://maps.google.com/maps?q=Developer%20Student%20Clubs%20(DSC)%20vssut&t=&z=16&ie=UTF8&iwloc=&output=embed" frameborder="0" style="border: 0; width: 100%; height: 345px" allowfullscreen></iframe>
</div>
</div>
<div class="col-lg-6">
<div class="row">
<div class="col-md-5 info">
<i class="ion-ios-location-outline"></i>
<p>VSSUT, Burla, Sambalpur-768018</p>
</div>
<div class="col-md-4 info">
<i class="ion-ios-email-outline"></i>
<p>[email protected]</p>
</div>
<div class="col-md-3 info">
<i class="ion-ios-telephone-outline"></i>
<p>+91 6206 014 527</p>
</div>
</div>
<div class="form">
<div id="sendmessage">
Your message has been sent. Thank you!
</div>
<div id="errormessage"></div>
<form action="" method="post" role="form" class="contactForm">
<div class="form-row">
<div class="form-group col-lg-6">
<input type="text" name="name" class="form-control" id="fname" placeholder="First Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" required autocomplete="off" />
<div class="validation"></div>
</div>
<div class="form-group col-lg-6">
<input type="text" name="name" class="form-control" id="lname" placeholder="Last Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" required autocomplete="off" />
<div class="validation"></div>
</div>
<div class="form-group col-lg-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Email" data-rule="email" data-msg="Please enter a valid email" required />
<div class="validation"></div>
</div>
<div class="form-group col-lg-6">
<input type="number" class="form-control" name="number" id="number" placeholder="Phone number" min="10" />
<div class="validation"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" required autocomplete="off" />
<div class="validation"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" id="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message" required></textarea>
<div class="validation"></div>
</div>
<div class="text-center">
<button type="submit" title="Send Message">
Send Message
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- #contact -->
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 footer-info">
<h3>Disclaimer</h3>
<p>
GDSC VSSUT is an independent group, the activities and views expressed by the group should in no way be linked with any corporation. GDSC VSSUT does not warrant the reliability of accuracy of the content in this website or of any other sites linked to this site. By using our website you hereby consent to our disclaimer and agree to its terms.
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><a href="#intro" class="scrollto">Home</a></li>
<li><a href="#services" class="scrollto">Events</a></li>
<li><a href="teamselector.html" class="scrollto">Our Team</a></li>
<li><a href="gl.html">Community guidelines</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
Veer Surendra Sai University of Technology <br />
Burla, Sambalpur-768018<br />
Odisha, India<br />
<strong>Phone:</strong>+91 6206 014 527<br />
<strong>Email:</strong> [email protected]<br />
</p>
<div class="social-links">
<a href="https://twitter.com/dscvssut" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/DSCVSSUT" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/dscvssut/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/dsc-vssut-burla/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 footer-newsletter">
<!-- <h4>Our Newsletter</h4>
<p>
Tamen quem nulla quae legam multos aute sint culpa legam noster
magna veniam enim veniam illum dolore legam minim quorum culpa
amet magna export quem marada parida nodela caramase seza.
</p>
<form action="" method="post">
<input type="email" name="email" /><input type="submit" value="Subscribe" />
</form> -->
<div class="intro-info">
<h4>Get ready to dive into the world of developers</h4>
<div>
<a href="https://dsc.community.dev/accounts/login/?next=/veer-surendra-sai-university-of-technology/" target="_blank" class="btn df ">Join us</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong>GDSC VSSUT</strong>. All Rights Reserved
</div>
<div class="credits">Designed by <span>GDSC VSSUT</span></div>
</div>
</footer>
<!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Uncomment below i you want to use a preloader -->
<!-- <div id="preloader"></div> -->
<!-- firebase script -->
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-firestore.js"></script>
<!-- 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/mobile-nav/mobile-nav.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<script src="https://kit.fontawesome.com/78cf058d97.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>