-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhome.html
635 lines (573 loc) · 27 KB
/
home.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="home.css">
</link>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="icon" href="asci-svg.png" type="image/gif" sizes="20x20">
<!-- Counter CDN -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js"></script> -->
<title>ASCI, COEP</title>
</head>
<body>
<!-- =========== scroll up ============== -->
<a id="scroll-up-btn" href="#goToTop" title="Go to top" style="position: fixed;top: 90vh;right: 1vw;
visibility:hidden;transition: all 0.5s ease-out;">
<img src="projects_images/icons8-scroll-up-48.png" style="height: 2.5em; width: 2.5em;" alt="...">
</a>
<script>
const scrollUpBtn = document.getElementById('scroll-up-btn')
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 45 || document.documentElement.scrollTop > 45) {
scrollUpBtn.style.visibility = "visible";
} else {
scrollUpBtn.style.visibility = "hidden";
}
}
</script>
<!-- =========== END OF SCROLL UP ========== -->
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/all.js"
integrity="sha384-xymdQtn1n3lH2wcu0qhcdaOpQwyoarkgLVxC/wZ5q7h9gHtxICrpcaSUfygqZGOe"
crossorigin="anonymous"></script>
<header id="goToTop">
<nav class="navbar navbar-expand-md navbar-dark" style="background-color:#1A2634 ;position:sticky">
<a class="navbar-brand logo" href="./index.html"><img style="border-radius: 5px;" height=50px; width=170px;
src="ASCI_LOGO.jpg"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto text-center">
<li class="nav-item active">
<a class="nav-link active" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resources.html">Resources</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="interviews.html">Interview Diaries</a>
</li>
<li class="nav-item">
<a class="nav-link" href="team/team21-22.html">Team</a>
</li>
</ul>
<ul class="navbar-nav mr-auto disappear">
<li><a href="https://www.coep.org.in" target="_blank"><img class="coep-logo-img" width=120px
src="./COEP_logo.png"></a></li>
</ul>
</div>
</nav>
</header>
<section class="banner-section">
<div class="auto-container">
<div class="row">
<div class="col-md-6">
<section class="home">
<h1 class="heading">
<div class="responsiveHeading">
<div>
<span>A</span><span>ssociation of </span>
</div>
<div>
<span>S</span><span>tudents of </span>
</div>
<div>
<span>C</span><span>E and </span>
</div>
<div>
<span>I</span><span>T</span>
</div>
</div>
</h1>
<br>
<h1>
<div class="subHeading responsiveHeading ">
<i>"Learn, </i><i> Socialize, </i><i>Code"</i>
</div>
</h1>
<!-- <p class="home-button wow fadeInUp bottom" style="text-align: center;">
<a href="#Announcements" class="btn btn-lg">Getting Started</a>
</p> -->
<a href="#about-us">
<div class="mouse_scroll">
<div class="mouse">
<div class="wheel"></div>
</div>
<div>
<span class="m_scroll_arrows unu"></span>
<span class="m_scroll_arrows doi"></span>
<span class="m_scroll_arrows trei"></span>
</div>
</div>
</a>
</section>
</div>
<div class="col-md-6 my-auto .hero-imgContainer">
<img class="hero-img img-fluid" style="border: 4px solid rgb(1, 247, 255); border-radius: 8px;"
src="./LSC.svg">
</div>
</div>
</div>
<div class="pattern-layer"></div>
</section>
<!-- ======== Announcements ======= -->
<!-- <section id="Announcements" style="background-color: black; color: white;">
<h2 class="text-center fw-bold" style="padding-top: 1.5em; margin-top: 2em;">Announcements</h2>
<hr style="height:2px;border-width:0;color:gray;background-color:gray">
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
aria-label="Slide 2"></button>
</button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/Event_Images/congrats.webp" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block">
<h5>First slide label</h5>
<p>Some representative placeholder content for the first slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="/Event_Images/congrats.webp" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block">
<h5>First slide label</h5>
<p>Some representative placeholder content for the first slide.</p>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Non cum cumque nihil ratione quidem? Laborum
omnis illum, consequatur, officiis, enim dolor amet ad rem impedit eveniet numquam. Vitae, sit quis?
Ratione, quasi! Itaque neque repudiandae esse cupiditate ipsum porro sapiente. Nesciunt, quas. Expedita,
qui. Fugiat aspernatur minus esse nam numquam repellat nostrum, iusto unde amet deleniti molestiae
suscipit dolore fugit!
</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true" style="background-color: black;"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true" style="background-color: black;"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section> -->
<!-- ==== END OF Announcements ==== -->
<!-- ==== About Us ==== -->
<section id="about-us" style="background-color: black; color: white;">
<h2 class="text-center fw-bold py-3">ABOUT US</h2>
<hr style="height:2px;border-width:0;color:gray;background-color:gray">
<div class="vision card" data-aos="zoom-in-up">
<div class="card-body">
ASCI is an association of students of the Department of Computer Engineering and Information Technology, College
of Engineering, Pune to pursue a shared goal of reaching academic and practical excellence in various fields of
computer science.
</div>
</div>
</section>
<!-- ==== End Of About Us === -->
<!-- ======= VISION ======== -->
<section id="vision" style="background-color: black; color: white;">
<h2 class="text-center fw-bold" style="padding-top: 1em;">VISION</h2>
<hr style="height:2px;border-width:0;color:gray;background-color:gray">
<div class="vision card" data-aos="zoom-in-up">
<div class="card-body" style="padding-bottom: 5rem;">
To be a nationwide recognized association ensuring an all-round growth of
the members and serve as a guiding light to produce good leaders in the field of Computer Science &
Information
Technology.
</div>
</div>
</section>
<!-- === END OF VISION ===== -->
<!-- ==== OBJECTIVES ===== -->
<section id="objectives">
<h2 class="text-center fw-bold mt-5">OBJECTIVES</h2>
<hr style="height:2px;border-width:0;color:gray;background-color:gray;">
<div>
<div class="container-fluid" style="margin:0;padding:0;">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 cl ">
<p class="ob" data-aos="zoom-in-up"><img src="Objective_logos/teamwork2.jpg" class="logo1"></img> <i
class="fas fa-check tick"></i> Create a network amongst students of all years of the department to
facilitate
communication and flow of knowledge and academic as well as industrial experiences.</p>
</div>
<div class="col-lg-4 col-md-6 cl">
<p class="ob" data-aos="zoom-in-up"><img src="Objective_logos/student_interaction.jpg" class="logo1"></img>
<i class="fas fa-check tick"></i>To develop a successful student-driven
departmental-level association, an ideal place
for senior-junior interaction.
</p>
</div>
<div class="col-lg-4 col-md-6 cl ">
<p class=" ob" data-aos="zoom-in-up"><img src="Objective_logos/univ.png" class="logo1"></img> <i
class="fas fa-check tick"></i>To organize students of all years of the Department under an umbrella
organization.
</p>
</div>
<div class="col-lg-4 col-md-6 cl ">
<p class=" ob" data-aos="zoom-in-up"><img src="Objective_logos/code.png" class="logo1"></img> <i
class="fas fa-check tick"></i>To inculcate the spirit of competitive coding and increasing awareness
for the same by
organizing coding competitions, day-long coding sessions to learn and practice hands-on coding.</p>
</div>
<div class="col-lg-4 col-md-6 cl ">
<p class=" ob" data-aos="zoom-in-up"><img src="Objective_logos/research.png" class="logo1"></img> <i
class="fas fa-check tick"></i>To exchange expertise with industry, academic and research
organizations.</p>
</div>
<div class="col-lg-4 col-md-6 cl">
<p class="ob" data-aos="zoom-in-up"><img src="Objective_logos/users.png" class="logo1"></img> <i
class="fas fa-check tick"></i>Lastly, to help deliver good human beings with social and ethical
values
back to the
society.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ===== END OF OBJECTIVES ===== -->
<!-- ========= GOALS ========= -->
<section id="goals" style="background-color: black; color: white;">
<h2 class="text-center fw-bold mt-5" style="padding-top: 1em;">GOALS</h2>
<hr style="height:2px;border-width:0;color:gray;background-color:gray;">
<div>
<div class="container bootstrap snippets bootdeys" style="font-family:Recursive ;margin:auto;">
<div class="row" style="margin:auto;align-items:center;justify-content:center;">
<div class=" col-lg-4 col-md-6 content-card" data-aos="zoom-in-up">
<div class="card-big-shadow">
<div class="card card-just-text goal" id="fir">
<p class="description_goal">Increasing participation and produce top performers in inter college
coding
competitions and similar contests. </p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 content-card" data-aos="zoom-in-up">
<div class="card-big-shadow">
<div class="card card-just-text goal" id="sec">
<p class="description_goal">Inculcate a spirit of competitive coding and increase awareness for
competitions like
ICPC (International Collegiate Programming Contest) by holding similar competitions in the
college
in addition
to day-long coding sessions to learn and practice hands-on coding</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 content-card" data-aos="zoom-in-up">
<div class="card-big-shadow">
<div class="card card-just-text goal" id="third">
<p class="description_goal">Organize students of the department under an umbrella organization to
increase
student-student and faculty-student interaction</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 content-card" data-aos="zoom-in-up">
<div class="card-big-shadow">
<div class="card card-just-text goal" id="fourth">
<p class="description_goal">To increase familiarity with globally recognised coding programmes
like
ICPC, GSoC, SIH
and increasing participation of the students in the same. </p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 content-card" data-aos="zoom-in-up">
<div class="card-big-shadow">
<div class="card card-just-text goal" id="fifth">
<p class="description_goal">Create a framework to impart guidance to juniors regarding Internships
and Placements.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== END OF GOALS ===== -->
<!-- ================== Counter ================== -->
<!-- <section class="counters" style="background-color: black;">
<div class="counter" title="Members">
<div class="counter-icon">
<i class="fas fa-users" id="icon"></i>
</div>
<div class="counter-text">
<div class="count">
50
</div>
<div>Members</div>
</div>
</div>
<div class="counter" title="Events">
<div class="counter-icon">
<i class="far fa-calendar-check" id="icon"></i>
</div>
<div class="counter-text">
<div class="count">
50
</div>
<div>Events</div>
</div>
</div>
<div class="counter" title="Projects">
<div class="counter-icon">
<i class="fas fa-code-branch" id="icon"></i>
</div>
<div class="counter-text">
<div class="count">
50
</div>
<div>Projects</div>
</div>
</div>
<div class="counter" title="Interview Experiences">
<div class="counter-icon">
<i class="fas fa-address-book" id="icon"></i>
</div>
<div class="counter-text">
<div class="count">
50
</div>
<div>Interview Experiences</div>
</div>
</div>
</section>
<script>
jQuery(document).ready(function ($) {
$('.count').counterUp({
delay: 10,
time: 300,
});
});
</script> -->
<!-- ============================================= -->
<!-- ======= GET IN TOUCH ======== -->
<section class="contact">
<div class="container-fluid">
<br>
<h2>Get In Touch</h2>
<div class="row mt-4 justify-content-center">
<div class="col-lg-8 contact-cards">
<div class="card location" data-aos="zoom-in-right">
<div class="card-body location">
<img src="https://image.freepik.com/free-vector/location_53876-25530.jpg">
<p class="card-text location" style="color: black; font-family:'Noto Sans', sans-serif;">
<b>Department of
Computer Engineering and Information Technology,<br>College Of Engineering Pune,<br>Wellesley
Road,<br>Shivajinagar,<br>Pune - 411005</b>
</p><br>
</div>
</div>
</div>
<div class="col-lg-8 contact-cards">
<iframe data-aos="zoom-in-left"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3782.961258221076!2d73.85324841399215!3d18.530652787403117!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2c0883c8de109%3A0x2cc01ddd19f7cfa4!2sDepartment%20Of%20Computer%20Engineering%20And%20Information%20Technology!5e0!3m2!1sen!2sin!4v1608822559178!5m2!1sen!2sin"
width=100% height=100% frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false"
tabindex="0">
</iframe>
</div>
</div>
</div>
<br><br>
</section>
<!-- ======== END OF GET IN TOUCH ========= -->
<!-- =========== CONNECT ========= -->
<footer class="footer bg-dark py-3">
<h3 text-align="center" style="color: white;">Connect</h3>
<br>
<div class="rounded-social-buttons">
<a class="social-button facebook" href="https://m.facebook.com/coepasci" target="_blank"><i
class="fab fa-facebook-f"></i></a>
<a class="social-button github" href="https://www.github.com/asci-coep/" target="_blank"><i
class="fab fa-github"></i></a>
<a class="social-button linkedin" href="https://www.linkedin.com/company/coepasci" target="_blank"><i
class="fab fa-linkedin"></i></a>
<a class="social-button instagram" href="http://www.instagram.com/coep_asci" target="_blank"><i
class="fab fa-instagram"></i></a>
</div>
<br>
<div class="container">
<span class="text-muted ">Copyright©ASCI COEP</span><br>
<span class="text-muted ">Designed by ASCI Core Team</span>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"><\/script>')</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/holder/2.9.7/holder.min.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>
<!-- Previous Goals Section -->
<!-- <div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-md-2 go">
<p class="goal">Increasing participation and produce top performers in inter college coding
competitions and similar contests.</p>
</div>
<div class="col-lg-4 col-md-2 go">
<p class="goal">Inculcate a spirit of competitive coding and increase awareness for competitions like
ICPC (International Collegiate Programming Contest) by holding similar competitions in the college in addition
to day-long coding sessions to learn and practice hands-on coding</p>
</div>
<div class="col-lg-4 col-md-2 go">
<p class="goal">Organize students of the department under an umbrella organization to increase
student-student and faculty-student interaction</p>
</div>
<div class="col-lg-4 col-md-2 go">
<p class="goal">To increase familiarity with globally recognised coding programmes like ICPC, GSoC, SIH
and increasing participation of the students in the same.</p>
</div>
<div class="col-lg-4 col-md-2 go">
<p class="goal">Create a framework to impart guidance to juniors regarding Internships and Placements.</p>
</div>
</div>
</div>-->
<!-- <div class="container bootstrap snippets bootdeys" style="font-family:Recursive ;margin:auto;">
<center>
<div class="row" style="margin:auto;align-items:center;justify-content:center;">
<div class="col-md-4 col-sm-6 content-card">
<div class="card-big-shadow">
<div class="card card-just-text goal" data-background="color" data-color="blue" data-radius="none">
<div class="content_goal" >
<p class="description_goal">Increasing participation and produce top performers in inter college coding
competitions and similar contests. </p>
</div>
</div> end card -->
<!-- </div>
</div>
<div class="col-md-4 col-sm-6 content-card">
<div class="card-big-shadow">
<div class="card card-just-text goal" data-background="color" data-color="green" data-radius="none">
<div class="content_goal" style="padding:40px">
<p class="description_goal">Inculcate a spirit of competitive coding and increase awareness for competitions like
ICPC (International Collegiate Programming Contest) by holding similar competitions in the college in addition
to day-long coding sessions to learn and practice hands-on coding</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 content-card">
<div class="card-big-shadow">
<div class="card card-just-text goal" data-background="color" data-color="yellow" data-radius="none">
<div class="content_goal" >
<p class="description_goal">Organize students of the department under an umbrella organization to increase
student-student and faculty-student interaction</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 content-card">
<div class="card-big-shadow">
<div class="card card-just-text goal" data-background="color" data-color="brown" data-radius="none">
<div class="content_goal">
<p class="description_goal">To increase familiarity with globally recognised coding programmes like ICPC, GSoC, SIH
and increasing participation of the students in the same. </p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 content-card">
<div class="card-big-shadow">
<div class="card card-just-text goal" data-background="color" data-color="purple" data-radius="none">
<div class="content_goal">
<p class="description_goal">Create a framework to impart guidance to juniors regarding Internships and Placements.</p>
</div>
</div>
</div>
</div>
</div>
</center>
</div>--.>
<ul class="GoalsList">
<li data-aos="fade-left">Increasing participation and produce top performers in inter college coding
competitions and similar contests.</li>
<li data-aos="fade-left">Inculcate a spirit of competitive coding and increase awareness for competitions like
ICPC (International Collegiate Programming Contest) by holding similar competitions in the college in addition
to day-long coding sessions to learn and practice hands-on coding.</li>
<li data-aos="fade-left">Organize students of the department under an umbrella organization to increase
student-student and faculty-student interaction</li>
<li data-aos="fade-left">To increase familiarity with globally recognised coding programmes like ICPC, GSoC, SIH
and increasing participation of the students in the same.</li>
<li data-aos="fade-left">Create a framework to impart guidance to juniors regarding Internships & Placements.
</li>
</ul>-->
<!-- === Previous ASCI CODE BOOST Result code === -->
<!--
<div class="wide scav mt-5 mb-5">
<h2 class="mt-5" style="text-align:center; padding-top:15px;"><b>ASCI CODE BOOST 2021 Results</b></h2>
<hr style="height:2px;border-width:0;color:gray;background-color:gray">
<div class="row">
<div class="col-sm-8">
<img src="Event_Images/congrats.webp" height="90%" width="90%">
</div>
<div class="col-sm-4" style="padding-bottom: 15px;">
<h2><b>FY Set 1 Results</b></h2>
<div>
<h3 class="ml-5"><b>Winner</b> - Vivek Patil<br>
<b>Runner Up</b> - Prerna Tulsiani
</h3>
</div>
<br>
<h2><b>FY Set 2 Results</b></h2>
<div>
<h3 class="ml-5"><b>Winner</b> - Vedanshi Shah<br>
<b>Runner Up</b> - Shyam Randar
</h3>
</div>
<br>
<h2><b>SY Set 1 Results</b></h2>
<div>
<h3 class="ml-5"><b>Winner</b> - Kunal Chaudhari<br>
<b>Runner Up</b> - Yash Badgujkar
</h3>
</div>
<br>
<h2><b>SY Set 2 Results</b></h2>
<div>
<h3 class="ml-5"><b>Winner</b> - Vishwajit Kadam<br>
<b>Runner Up</b> - Dipak Ambhure
</h3>
</div>
</div>
</div>
</div>
-->
<!-- ============================================ -->