-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
599 lines (495 loc) · 31.3 KB
/
team.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
<!DOCTYPE html>
<html lang="en" style="background-color: black;">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<title>PAC IITD | TEAM</title>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<link rel="shortcut icon" href="Figures/logo.jpeg" type="image" sizes="48x48" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/team.css" />
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;800&display=swap" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" />
<!-- Bootstrap4 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script type="text/javascript">
var scrollValue = 100;
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
document.getElementsByTagName("nav")[0].setAttribute("style", "background-color: rgba(0, 0, 0, " + Math.pow((currentScrollPos) / scrollValue, 2) + ");");
if (prevScrollpos >= currentScrollPos) {
document.getElementsByTagName("nav")[0].style.transitionDuration = "0.5s";
document.getElementsByTagName("nav")[0].style.top = "0";
} else {
if (currentScrollPos > scrollValue) {
document.getElementsByTagName("nav")[0].style.transform = "translateY(-20vh)";
document.getElementsByTagName("nav")[0].style.transitionDuration = "1s";
}
}
prevScrollpos = currentScrollPos;
};
</script>
</head>
<body>
<header>
<script src='js/app_team.js'></script>
<nav id="navbar">
<div class="logo">
<img src="Figures/logo_transparent.png" alt="PHYSICS & ASTRONOMY CLUB" />
</div>
<ul class="nav-links">
<li><a class="nav-item active" href="index.html" style="text-decoration: none; color: #fff;">HOME</a></li>
<li><a class="nav-item active" href="https://home.iitd.ac.in" style="text-decoration: none;color: #fff;">IIT DELHI</a></li>
<li><a class="nav-item" href="team.html" style="text-decoration: none; color: #fff;">TEAM</a></li>
<!-- <li><a class="nav-item" href="tryst21.html" style="text-decoration: none;color: #fff;">TRYST'21</a></li> -->
<li><a class="nav-item" href="contact.html" style="text-decoration: none;color: #fff;">CONTACT US</a></li>
</ul>
<div class="burger">
<h1>></h1>
</div>
</nav>
<!-- <div id="stars"></div> -->
<!-- <div id="stars2"></div> -->
<!-- <div id="stars3"></div> -->
</header>
<section class="team">
<!-- <div class=" flex items-center h-auto lg:h-screen flex-wrap mx-auto "> -->
<!--Main Col-->
<h1 class="sm: text-4xl font-bold title-font mb-2 pt-20 pb-10" style="color: white">
Meet the Team!
</h1>
<div class="container grid mx-auto grid-cols-1 lg:grid-cols-12 gap-8 pb-10 pl-10 pr-10">
<div class=" lg:col-span-3" draggable="true"></div>
<div class=" lg:col-span-6" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center nandan_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Nandan I P</h1>
<p class=" pb-3">Overall Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true"></div>
<div class=" lg:col-span-4" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center dhruv_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Dhruv Kumar Gupta</h1>
<p class=" pb-3">Research Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center gurusha_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Gurusha Janeja</h1>
<p class=" pb-3">Research Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center yashasvi_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Yashasvi Ghadale</h1>
<p class=" pb-3">Research Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center meenal_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Meenal Sharma</h1>
<p class=" pb-3">Events & Publicity Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center yashvardhan_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Yashvardhan</h1>
<p class=" pb-3">Events & Publicity Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center mustafa_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Mustafa Chasmai</h1>
<p class=" pb-3">Website Coordinator</p>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl person_card">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center opal_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5">Opal Harinkhere</h1>
<p class=" pb-3">Social Media & Design Coordinator</p>
</div>
</div>
</div>
</div>
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<!-- </div> -->
</section>
<section class="team_execs" style="margin-bottom: 65vh;">
<div class="container" style=" min-width: 98vw; padding: -10px;">
<div id="carousel" class="carousel slide" data-interval="5000">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1" ></li>
<li data-target="#carousel" data-slide-to="2"></li>
<li data-target="#carousel" data-slide-to="3"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item ">
<div class="container grid mx-auto grid-cols-1 lg:grid-cols-12 gap-4 pb-10 pt-10 pl-10 pr-10">
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center adarsh_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Adarsh Roy</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center aditya_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Aditya Agrawal</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center akash_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Akash Dhingra</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center amit_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Amit Kansotiya</h1>
</div>
</div>
</div>
<!-- Second row -->
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center ankita_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Ankita Ghosh</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center ankit_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Ankit Meena</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center ashutosh_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Ashutosh Gupta</h1>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item active">
<div class="container grid mx-auto grid-cols-1 lg:grid-cols-12 gap-4 pb-10 pt-10 pl-10 pr-10">
<!-- Third row -->
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center dhruv_b_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Dhruv Bagrecha</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center dhruv_s_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Dhruv Saini</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center gurarmaan_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Gurarmaan Singh</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center harshit_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Harshit Kalra</h1>
</div>
</div>
</div>
<!-- Fourth row -->
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center himanshu_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Himanshu Singh</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center ishaan_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Ishaan Jain</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center jayati_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Jayati Madan</h1>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container grid mx-auto grid-cols-1 lg:grid-cols-12 gap-4 pb-10 pt-10 pl-10 pr-10">
<!-- Fifth row -->
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center kartik_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Kartik Sharma</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center khyati_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Khyati Karia</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center kirti_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Kirti Bagri</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center mohit_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Mohit Goswami</h1>
</div>
</div>
</div>
<!-- Sixth row -->
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center mudit_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Mudit Chopra</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center mudrankit_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Mudrankit Gupta</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center samyak_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Samyak Jain</h1>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container grid mx-auto grid-cols-1 lg:grid-cols-12 gap-4 pb-10 pt-10 pl-10 pr-10">
<div class=" lg:col-span-3" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl">
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center saptarshi_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Saptarshi</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center shradha_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Shradha Bhutani</h1>
</div>
</div>
</div>
<div class=" lg:col-span-3" draggable="true">
<div class="lg: rounded-lg lg:rounded-lg shadow-2xl">
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center soutrik_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Soutrik Mandal</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center sujal_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Sujal Jain</h1>
</div>
</div>
</div>
<div class=" lg:col-span-4" draggable="true">
<div class="person_card lg: rounded-lg lg:rounded-lg shadow-2xl">
<div class="text-center pt-10 pt-20">
<div class="flex block lg: rounded-full shadow-xl mx-auto -mt-16 h-48 w-48 bg-cover opacity-100 bg-center sukanya_disp_pic"></div>
<h1 class="text-3xl font-bold pt-5 pb-5">Sukanya Ghosal</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#carousel" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#carousel" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</section>
<div>
<div class="mr-10"></div>
<footer>
<div class="footer-links">
<ul>
<li>
<a id="mail" href="mailto:physicsastronomyclubiitd@gmail.com "><i class="fa fa-envelope"></i
></a>
</li>
<li>
<a id="insta" href="https://www.instagram.com/pac_iitd/"><i class="fa fa-instagram"></i
></a>
</li>
<li>
<a id="fb" href="https://www.facebook.com/PhysicsAndAstronomyIITD/ "><i class="fa fa-facebook"></i></a
><br />
</li>
<li>
<a
id="youtube"
href="https://www.youtube.com/channel/UCetVYW24b8e4ukDjNaU0n2A "
><i class="fa fa-youtube"></i></a
><br />
</li>
</ul>
</div>
<div class="foot">
<div class="footer-logo">
<div class="logo-container">
<img
src="Figures/logo_transparent.png"
alt="PHYSICS & ASTRONOMY CLUB"
/>
</div>
</div>
<div class="footer-nav">
<ul>
<li><a href="index.html" class="nav-link" id="active">HOME</a></li>
<li><a href="https://home.iitd.ac.in" class="nav-link" id="active">IIT DELHI</a></li>
<li><a href="#" class="nav-link">TEAM</a></li>
<!-- <li><a href="tryst21.html" class="nav-link">TRYST'21</a></li> -->
<li><a href="contact.html" class="nav-link">CONTACT US</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>COPYRIGHT © 2021 PHYSICS & ASTRONOMY CLUB, IIT DELHI</p>
</div>
</footer>
<div id="preloader">
<div id="loader">
<svg viewBox="0 0 960 300">
<symbol id="s-text">
<text text-anchor="middle" x="50%" y="70%">PAC</text>
</symbol>
<g class="g-ants">
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
</g>
</svg>
<svg viewBox="0 0 1000 300">
<symbol id="s-text-2">
<text text-anchor="middle" x="50%" y="80%">IIT Delhi</text>
</symbol>
<g class="g-ants">
<use xlink:href="#s-text-2" class="text-copy"></use>
<use xlink:href="#s-text-2" class="text-copy"></use>
<use xlink:href="#s-text-2" class="text-copy"></use>
<use xlink:href="#s-text-2" class="text-copy"></use>
<use xlink:href="#s-text-2" class="text-copy"></use>
</g>
</svg>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="./js/index.js"></script>
<script src="js/show-on-scroll.js"></script>
</body>
</html>