-
Notifications
You must be signed in to change notification settings - Fork 18
/
lockdown_events.html
459 lines (429 loc) · 15.6 KB
/
lockdown_events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>PCCOE ACM Student Chapter - Lockdown Events</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicons -->
<link href="images/pccoe acm.png" rel="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"
/>
<!-- 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" />
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-K4Z30P6082"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-K4Z30P6082");
</script>
</head>
<body>
<!--==========================
Header
============================-->
<header id="header" class="header-scrolled2">
<div class="container-fluid">
<div id="logo" class="pull-left">
<h1><a href="index.html" class="scrollto">PCCOE ACM</a></h1>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li class="menu-has-children">
<a href="#">About</a>
<ul>
<li><a href="aboutacm.html">About ACM</a></li>
<li><a href="aboutpccoeacm.html">About PCCOE ACM</a></li>
</ul>
</li>
<li><a href="acm_activities.html">ACM Activities</a></li>
<li><a href="achievements.html">Achievements</a></li>
<li class="cesa-insider">
<a href="#">Cesa Insider</a>
<ul>
<li>
<a
href="./assets/CESA%20Insider%20Issue%2001.pdf"
target="_blank"
>Issue 01</a
>
</li>
<li>
<a
href="./assets/CESA%20Insider%20Issue%2002.pdf"
target="_blank"
>Issue 02</a
>
</li>
</ul>
</li>
<li><a href="team.html">The Team</a></li>
<li><a href="acmw.html">ACM-W</a></li>
<li class="menu-has-children">
<a href="#">TechPart</a>
<ul>
<li><a href="events.html">Event Calendar</a></li>
<!--<li><a href="anantya/">ANANTYA 2k20</a></li>
<li><a href="techlligent/">Techlligent 2019</a></li>-->
<li>
<a href="leaderboard.html">Weekly Coding LeaderBoard</a>
</li>
<li><a href="#">Lockdown Events</a></li>
<!--<li><a href="#">PCube</a></li>-->
</ul>
</li>
<!-- <li><a href="index.html#contact">Contact</a></li> -->
</ul>
</nav>
<!-- #nav-menu-container -->
</div>
</header>
<!-- #header -->
<!--==========================
About Us Section
============================-->
<section id="about" style="padding-top: 100px">
<div class="container">
<div class="row about-cols">
<div class="col-md-12 wow fadeInUp">
<div class="section-header">
<h3>Lockdown Film Making Competition</h3>
<p>
Team CESA organized a Lockdown Film Making competition - an Open
for all contest. The contest was publicized and organized with
the notion : Make a short film only inside your home.The
challenge is how creative you can get using no other location
other than your home and only a phone camera. Theme was Open
theme for wider audience reach. Time limit to each short film
was a max of 10 minutes.
</p>
</div>
</div>
</div>
</div>
<div class="container wow fadeInUp">
<div class="row">
<div class="col-lg-6 container about-col">
<div class="item active">
<img
src="images/CESA19-20/Lockdown/film2.jpg"
class="banner2"
alt=""
style="width: 100%; height: 50%"
/>
</div>
</div>
<div class="col-lg-6 container about-col">
<h2>Winners</h2>
<table class="table">
<thead>
<tr>
<th>Position</th>
<th>Name</th>
<th>Title</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr class="success">
<td>1</td>
<td>Pratik Dhore and Team</td>
<td>The Interview</td>
<td>
<a
href="https://www.instagram.com/tv/CA5cLTAqrr-/?igshid=1jtciyj2hsff8"
>View</a
>
</td>
</tr>
<tr class="success">
<td>2</td>
<td>Chaitanya Shembekar and Team</td>
<td>Mahabharat ani Aamhi</td>
<td>
<a
href="https://www.instagram.com/tv/CA5PHO7Kcxc/?igshid=1h0rt8ibpeenn"
>View</a
>
</td>
</tr>
<tr class="success">
<td>3</td>
<td>Bhushan Dambare and Team</td>
<td>Powerbank ani Aamhi</td>
<td>
<a
href="https://www.instagram.com/tv/CA5kqS8D4BY/?igshid=1arv6y75ih7rm"
>View</a
>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section id="about" style="padding-top: 100px">
<div class="container">
<div class="row about-cols">
<div class="col-md-12 wow fadeInUp">
<div class="section-header">
<h3>Blog Writing Challenge</h3>
<p>
Team CESA organized a Blog writing competition - an Open for all
contest. The contest was publicized and organized with the
notion : To provide a platform to students for expressing their
views right from heart on society relevant topics.
</p>
</div>
</div>
</div>
</div>
<div class="container wow fadeInUp">
<div class="row">
<div class="col-lg-6 container about-col">
<div class="item active">
<img
src="images/CESA19-20/Lockdown/blog2.jpg"
class="banner2"
alt=""
style="width: 100%"
/>
</div>
</div>
<div class="col-lg-6 container about-col">
<h2>Winners</h2>
<table class="table">
<thead>
<tr>
<th>Position</th>
<th>Name</th>
<th>Topic</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr class="success">
<td>1</td>
<td>Ankur Jangra</td>
<td>People and Economy Post Covid-19</td>
<td><a href="static/AnkurJangra.pdf">Link</a></td>
</tr>
<tr class="success">
<td>2</td>
<td>Rutuja Kakad</td>
<td>
The Role of Mass Media during Pandemic- Informative or
Spooking?
</td>
<td><a href="static/RutujaKakad.pdf">Link</a></td>
</tr>
<tr class="success">
<td>3</td>
<td>Divya Rajput</td>
<td>Is Technology limiting Creativity?</td>
<td><a href="static/DivyaRajput.pdf">Link</a></td>
</tr>
<tr class="success">
<td>4</td>
<td>Anjali Gupta</td>
<td>Online Learning vs Classroom Learning</td>
<td><a href="static/AnjaliGupta.pdf">Link</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section id="about" style="padding-top: 100px">
<div class="container">
<div class="row about-cols">
<div class="col-md-12 wow fadeInUp">
<div class="section-header">
<h3>Q Quiz : Quarantine Quiz</h3>
<p>
Team CESA organized a Quarantine Quiz - an Open for all contest.
The contest was publicized and organized with the notion : as a
series of quizzes organised to test your knowledge on a variety
of fun and interesting topics. Main attractions were MCQ based
relevant questions that allowed every age group to participate
enthusiastically.
</p>
</div>
</div>
</div>
</div>
<div class="container wow fadeInUp">
<div class="row">
<div class="col-lg-6 container about-col">
<div class="item active">
<img
src="images/CESA19-20/Lockdown/quiz2.jpg"
class="banner2"
alt=""
style="width: 100%"
/>
</div>
</div>
<div class="col-lg-6 container about-col">
<h2>Winners</h2>
<table class="table">
<thead>
<tr>
<th>Quiz No.</th>
<th>Name</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="success">
<td>1</td>
<td>Adarsh Vishwakarma</td>
<td>1 June, 2020</td>
</tr>
<tr class="success">
<td>2</td>
<td>Chirag Kriplani</td>
<td>3 June, 2020</td>
</tr>
<tr class="success">
<td>3</td>
<td>Dhanashree Munot</td>
<td>5 June, 2020</td>
</tr>
<tr class="success">
<td>4</td>
<td>Akshay Belhekar</td>
<td>7 June, 2020</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- #about -->
<!--==========================
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>PCCOE ACM</h3>
<p>
Set up in 2012, the PCCOE ACM Student Chapter is one of the best
Student Chapter in Pune. Year by year, the Chapter strives to
increase the number of events, and the participation of
students. With the guidance of the faculty sponsors, and the
enthusiastic volunteer and participating students, the Chapter
which is now in its Eleventh year is improving rapidly on all
counts.
</p>
</div>
<div class="col-lg-4 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="ion-ios-arrow-right"></i>
<a href="index.html">Home</a>
</li>
<li>
<i class="ion-ios-arrow-right"></i>
<a href="https://www.acm.org/">ACM - Home</a>
</li>
<li>
<i class="ion-ios-arrow-right"></i>
<a href="https://india.acm.org/">ACM India - Home</a>
</li>
<li>
<i class="ion-ios-arrow-right"></i>
<a href="https://xrds.acm.org/">ACM - XRDS</a>
</li>
<li>
<i class="ion-ios-arrow-right"></i>
<a href="https://dl.acm.org/">ACM Digital Library</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
Pimpri Chinchwad College of Engineering.<br />
Near Akurdi Railway Station Rd, Sector No. 26, Pradhikaran,
Nigdi, Pimpri-Chinchwad, Maharashtra 411044<br />
<!-- <strong>Phone:</strong> +91-94925 22474<br> -->
<strong>Email:</strong> [email protected]<br />
</p>
<div class="social-links">
<a href="https://www.facebook.com/pccoe.acm" class="facebook"
><i class="fa fa-facebook"></i
></a>
<a href="https://www.instagram.com/pccoeacm/" class="instagram"
><i class="fa fa-instagram"></i
></a>
<a href="mailto:[email protected]" class="google-plus"
><i class="fa fa-envelope"></i
></a>
<a
href="https://www.youtube.com/channel/UCY5ikWq8yG6bSS1W322M9iw"
class="youtube"
><i class="fa fa-youtube"></i
></a>
<a
href="https://www.linkedin.com/company/pccoe-acm-student-chapter/"
class="linkedin"
><i class="fa fa-linkedin"></i
></a>
<a href="https://twitter.com/pccoeacm?s=09" class="twitter"
><i class="fa fa-twitter"></i
></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<p>
Designed and developed with
<i class="fa fa-heart" style="color: red"></i> by
<a style="color: #13b7ed">Web Team CESA</a> | Copyright ©2022 All
rights reserved
</p>
</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/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>