-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1038 lines (999 loc) · 42.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
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 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>
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PAC IITD | HOME</title>
<link rel="stylesheet" href="css/style.css" />
<link
rel="shortcut icon"
href="Figures/logo.jpeg"
type="image"
sizes="48x48"
/>
<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"
/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
</style>
</head>
<body>
<header>
<script src="js/app.js"></script>
<nav>
<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="#">HOME</a></li>
<li>
<a class="nav-item active" href="https://home.iitd.ac.in/"
>IIT DELHI</a
>
</li>
<li><a class="nav-item" href="team.html">TEAM</a></li>
<!-- <li><a class="nav-item" href="tryst21.html">TRYST'21</a></li> -->
<li><a class="nav-item" href="contact.html">CONTACT US</a></li>
</ul>
<div class="burger">
<h1>></h1>
</div>
</nav>
</header>
<main>
<section class="headline">
<div class="inner">
<div class="title">
<h1>
<b>THE PHYSICS & ASTRONOMY CLUB</b><br />
IIT DELHI
</h1>
</div>
<div class="title-des">
<p>
Through this club, we aim to create an engaging environment where
scientific thought and logical reasoning is encouraged to tackle
both previously solved and unsolved questions regarding the
universe and the laws of physics <br />
<br />
We focus on gathering enthusiasts and facilitating knowledge
sharing across all groups of students and to capture the interest
of all the students in the mysteries of the universe. We also
promote learning from the experts of the research field and the
people in the industry
</p>
</div>
<div class="title-button">
<button>
<a href="https://caic.iitd.ac.in/pac">MORE ABOUT US</a>
</button>
</div>
<br />
<c>MARTIAN SCENERY CAPTURED BY CURIOSITY: NASA/JPL-CALTECH/MSSS</c>
</div>
<div class="curiosity show-on-scroll"></div>
</section>
<!-- <section class="welcome">
<div class='title'>
<h1><b>THE PHYSICS & ASTRONOMY CLUB</b><br> IIT DELHI</h1>
</div>
<div class='title-des'>
<p>Through this club, we aim to create an engaging environment where scientific thought and logical reasoning is encouraged to tackle both previously solved and unsolved questions regarding the universe and the laws of physics <br> <br> We focus on gathering enthusiasts and facilitating knowledge sharing across all groups of students and to capture the interest of all the students in the mysteries of the universe. We also promote learning from the experts of the research
field and the people in the industry
</p>
</div>
<div class="title-button">
<button><a href="https://caic.iitd.ac.in/pac">MORE ABOUT US</a></button>
</div>
<c>MARTIAN SCENERY CAPTURED BY CURIOSITY: NASA/JPL-CALTECH/MSSS</c>
</section> -->
<section class="up_events">
<section class="up_events_cover">
<div class="button animate-right show-on-scroll">
<a href="https://forms.gle/33HfXgYWvH1P7Es36" style="text-decoration: none; color: white;">Register Now!<br>(IITD students)</a>
</div>
<div
class="container grid grid-cols-1 lg:grid-cols-6"
style="min-height: 100%; min-width: 100%; padding: 0px;"
>
<div class="lg:col-span-6">
<h1 >Upcoming Events</h1>
</div>
</div>
<div
class="container grid grid-cols-1 lg:grid-cols-12"
style="min-height: 100%; min-width: 100%; padding: 20px; margin-top: 3vh;"
>
<div class="lg:col-span-1"></div>
<div class="lg:col-span-4">
<div>
<img class="card-img-top cur_event" src="Figures/events/navigo.jpeg" alt="Card image" style="z-index: 1000;">
</div>
</div>
<div class="lg:col-span-1"></div>
<div class="lg:col-span-5 event_details">
<p class="title">Navigo Physics</p>
<!-- <p style="font-size: 35px; text-align: left;">Workshop Plan</p> -->
<!-- <p style="text-align: left;"></p> -->
<ul style="list-style-image: url('Figures/events/tick.png'); margin-left: 40px; margin-top: 20px;">
<li>A quest into the unknown, where you get to be the "hero" and save everyone with your wit and keen understanding of the universe</li>
<li>Solve some almost impossible riddles</li>
<li>Compete with peers to the top of the leaderboard</li>
</ul>
<div
class="flex flex-nowrap"
style=" padding: 10px; margin-top: 5vh;"
>
<div class="lg:col-span-3">
<div class="card timer-card" style="padding: 1px;">
<p id="days">30</p>
<p class="timer-card-caption">days</p>
</div>
</div>
<div class="lg:col-span-3">
<div class="card timer-card" style="padding: 1px;">
<p id="hours">30</p>
<p class="timer-card-caption">hours</p>
</div>
</div>
<div class="lg:col-span-3">
<div class="card timer-card" style="padding: 1px;">
<p id="minutes">30</p>
<p class="timer-card-caption">minutes</p>
</div>
</div>
<div class="lg:col-span-3">
<div class="card timer-card" style="padding: 1px;">
<p id="seconds">30</p>
<p class="timer-card-caption">seconds</p>
</div>
</div>
</div>
<div class="lg:col-span-1"></div>
</div>
</div>
</section>
</section>
<section class="Blogs">
<div
class="container grid grid-cols-1 lg:grid-cols-6"
style="min-height: 100%; min-width: 100%; padding: 0px;"
>
<div class="lg:col-span-6">
<h1 style="color: white;">Blogs</h1>
</div>
</div>
<div
class="container grid grid-cols-1 lg:grid-cols-12 mx-auto"
style="min-height: 100%; min-width: 100%; padding: 20px; margin-top: 3vh;"
>
<!-- <div class="blg h1 text-center"></div> -->
<!-- Card Start -->
<div class="lg:col-span-3"></div>
<div class="lg:col-span-6">
<div class="card card_blog">
<div
class="container grid grid-cols-1 lg:grid-cols-12"
style="min-height: 100%; min-width: 100%; padding: 20px; margin-top: 3vh;"
>
<div class="lg:col-span-7">
<div class="card_blog-block px-6">
<h4 class="card-title"></h4>
<p class="card-text bltext">
Articles on different topics in Physics and Astronomy written by the
community of IIT Delhi, and published by us. From Quantum Entanglement
to Gravitational Waves, the blog will take you through a journey
across the Universe!
</p>
<br>
<a
href="https://www.pac-iitd.com/blog/"
class="mt-auto btn btn-primary"
>Go to blogs</a
>
</div>
</div>
<!-- Carousel start -->
<div class="lg:col-span-5">
<div
id="CarouselTest"
class="carousel slide"
data-ride="carousel"
>
<ol class="carousel-indicators">
<li
data-target="#CarouselTest"
data-slide-to="0"
class="active"
></li>
<li data-target="#CarouselTest" data-slide-to="1"></li>
<li data-target="#CarouselTest" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" >
<div class="carousel-item active">
<img
class="d-block"
src="./Figures/blog_astronaut.jpg"
alt=""
/>
</div>
<div class="carousel-item">
<img
class="d-block"
src="./Figures/eequaltomcsquare.jpeg"
alt=""
/>
</div>
<div class="carousel-item">
<img
class="d-block"
src="./Figures/galaxywordcloud.jpeg"
alt=""
/>
</div>
<a
class="carousel-control-prev"
href="#CarouselTest"
role="button"
data-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#CarouselTest"
role="button"
data-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!-- End of carousel -->
</div>
</div>
</div>
<div class="lg:col-span-3"></div>
<!-- End of card -->
</div>
<!-- <div class="d-flex flex-row ">
<div class="p-2">
<div class="card carwr">
<div class="row">
<div class="col-sm-7">
<div class="card-block">
<p>Wetgple text to build your own card.</p>
<p>Change around the content for awsomenes</p>
<div class="float-right">
Float right on all viewport sizes
</div>
<br />
<a href="#" class="btn btn-primary btn-sm">Read More</a>
</div>
</div>
<div class="col-sm-5">
<img
class="d-block w-100"
src="https://picsum.photos/150?image=380"
alt=""
/>
</div>
</div>
</div>
</div>
<div class="p-2">
<div class="card carwr">
<div class="row">
<div class="col-sm-5">
<img
class="d-block w-100"
src="https://picsum.photos/150?image=641"
alt=""
/>
</div>
<div class="col-sm-7">
<div class="card-block">
<p>Copy paste the HTML and CSS.</p>
<p>Change around the content for awsomenes</p>
<br />
<a href="#" class="btn btn-primary btn-sm float-right"
>Read More</a
>
</div>
</div> -->
<!-- </div>
</div>
</div>
</div>
</div> -->
<br />
<br />
</section>
<section class="CurrentProjects">
<div
class="container grid grid-cols-1 lg:grid-cols-6"
style="min-height: 100%; min-width: 100%; padding: 0px;"
>
<div class="lg:col-span-6">
<h1 style="color: white;">Current Projects</h1>
</div>
</div>
<div
class="container grid grid-cols-1 lg:grid-cols-12 mx-auto"
style="min-height: 100%; min-width: 100%; padding: 20px; margin-top: 3vh;"
>
<!-- <div class="blg h1 text-center"></div> -->
<!-- Card Start -->
<div class="lg:col-span-3"></div>
<div class="lg:col-span-6">
<div class="card card_blog proj-card">
<div
class="container grid grid-cols-1 lg:grid-cols-12"
style="min-height: 100%; min-width: 100%; padding: 20px; margin-top: 3vh;"
>
<div class="lg:col-span-7">
<div class="card_blog-block px-6">
<h2 class="card-title card-text bltitle">Satellite Development</h2>
<h3 class="card-title card-text bltext">Study and demonstrate orientational
dynamics and control of a satellite</h3>
<p class="card-text bltext" ></p>
<ul type="square" >
<li>● Working on a miniature working model of a satellite</li>
<li>● Exploring orientational dynamics with attitude description and kinematics</li>
<li>● Study control mechanisms and different sensors used in satellites</li>
</ul>
</p>
</div>
</div>
<!-- Carousel start -->
<div class="lg:col-span-5">
<div
id="CarouselTest"
class="carousel slide"
data-ride="carousel"
>
<ol class="carousel-indicators">
<li
data-target="#CarouselTest"
data-slide-to="0"
class="active"
></li>
<li data-target="#CarouselTest" data-slide-to="1"></li>
<li data-target="#CarouselTest" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" >
<div class="carousel-item active">
<img
class="d-block"
src="./Figures/satellite.png"
alt=""
/>
</div>
</div>
</div>
</div>
<!-- End of carousel -->
</div>
</div>
</div>
<div class="lg:col-span-3"></div>
<!-- End of card -->
</div>
<br />
<br />
</section>
<section class="about">
<div
class="container grid mx-auto grid-cols-1 lg:grid-cols-6"
style="min-height: 100%; min-width: 100%; padding: 0px"
>
<div
class="
left-img
lg:visible lg:col-span-2
animate-left
show-on-scroll
"
></div>
<div class="lg:col-span-2">
<div class="container grid mx-auto grid-cols-1 pt-20">
<div class="lg:col-span-1">
<h1>OUR HISTORY</h1>
</div>
<div class="lg:col-span-1" align="center">
<h4 class="history-text">
The Physics and Astronomy Club IIT Delhi, <br />
is the successor to the <br />
Astronomy Club of Indian Institute of Technology, Delhi,<br />
which had been established in 2011, <br />
and had been operational under <br />
Technocracy, CAIC, IIT Delhi
</h4>
</div>
<div class="astronomy lg:col-span-1">
<img
src="Figures/astronomy_club_inv.png"
alt="ASTRONOMY CLUB"
/>
</div>
</div>
</div>
<div
class="
right-img
lg:visible lg:col-span-2
animate-right
show-on-scroll
"
></div>
</div>
</section>
<section class="what" style="padding: 0px">
<div
class="container"
style="min-width: 102vw; margin-left: -1vw; margin-right: -1vw"
>
<div
id="what_carousel"
class="carousel carousel-fade slide"
data-ride="carousel"
>
<!-- Indicators -->
<ul class="carousel-indicators">
<li
data-target="#what_carousel"
data-slide-to="0"
class="active"
></li>
<li data-target="#what_carousel" data-slide-to="1"></li>
<li data-target="#what_carousel" data-slide-to="2"></li>
<li data-target="#what_carousel" data-slide-to="3"></li>
<li data-target="#what_carousel" data-slide-to="4"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner what-we-do-carousel">
<h1 class="what-we-do-head">WHAT DO WE DO?</h1>
<div class="carousel-item active">
<div class="view">
<img
class="d-block w-100 img-fluid"
src="./Figures/stargaze.png"
alt="First slide"
style="height: 100%; width: 100%"
/>
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption" style="text-align: left">
<p>
<b>Sky observations</b><br /><br />
Both in-campus and short excursions <br />
for observation of the night sky, <br />
guided by either members from the club<br />
or professional guides to learn<br />
to observe, identify and deduce the <br />
properties of objects visible in the <br />
night sky through a telescope<br /><br />
</p>
<div class="v_space_40"></div>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img
class="d-block w-100 img-fluid"
src="./Figures/lectures.png"
alt="Second slide"
style="height: 100%; width: 100%"
/>
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption" style="text-align: right">
<p>
<b>Guest Lectures and Workshops:</b><br />
<br />Lectures and workshops on several <br />
topics in Physics, Astronomy and <br />
Mathematics by faculty from colleges <br />
and research institutes from<br />
across India and abroad<br /><br />
</p>
<div class="v_space_45"></div>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img
class="d-block w-100 img-fluid"
src="./Figures/discussions.png"
alt="Third slide"
style="height: 100%; width: 100%"
/>
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption" style="text-align: left">
<p>
<b>Discussions:</b><br />
<br />Open discussions on recent <br />
and/or important topics in Physics, <br />
Mathematics and Astronomy between <br />
members of the club and guests, <br />
may or may not be aided by a professor<br /><br /><br />
</p>
<div class="v_space_40"></div>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img
class="d-block w-100 img-fluid"
src="./Figures/comp.png"
alt="Fourth slide"
style="height: 100%; width: 100%"
/>
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption" style="text-align: right">
<p>
<b>Competitive Events:</b><br />
<br />Prepare for and participate in<br />
inter-college and inter-institution <br />
events in the fields of Physics, <br />
Astronomy, Mathematics, Design <br />
and Robotics.<br /><br />
</p>
<div class="v_space_45"></div>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img
class="d-block w-100 img-fluid"
src="./Figures/miscl.png"
alt="Fifth slide"
style="height: 100%; width: 100%"
/>
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption" style="text-align: left">
<p>
<b>Miscellaneous:</b><br />
<br />Includes competitive<br />
quizzes, treasure hunts, <br />
research projects, comic design <br />
and more<br /><br /><br /><br />
</p>
<div class="v_space_40"></div>
</div>
</div>
<div class="what-button" style="margin-top: 80vh">
<button>
<a
href="https://caic.iitd.ac.in/Wordpress/wp-content/uploads/The-Constitution-Physics-and-Astronomy-Club.pdf"
>OUR CONSTITUTION</a
>
</button>
</div>
</div>
<!-- Left and right controls -->
<a
class="carousel-control-prev"
href="#what_carousel"
data-slide="prev"
>
<span class="carousel-control-prev-icon"></span>
</a>
<a
class="carousel-control-next"
href="#what_carousel"
data-slide="next"
>
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</section>
<section class="events">
<h1>PAST EVENTS</h1>
<div class="all-posters">
<div class="posters">
<div class="poster">
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters1.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded1" />
<h1>Introductory Astrophysics</h1>
<h4>19th Feb '20</h4>
<br />
<p class="truncated">
Isn't it a mystery for all of us how the universe works
outside Earth? All of us have wondered and many inspired
by it since their childhood. Right now, we think it would
be a great opportunity for us to organize a talk on
"Introductory Astrophysics". It shall be a very
interesting event to explore the basics across the length
and breadth of a topic less prominent in our institution.
And it would also be a great experience added to the
observations that we hold regularly.
</p>
<label for="expanded1" role="button">read more</label>
</div>
</div>
</div>
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters2.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded2" />
<h1>Richard Feynman</h1>
<h4>11th Feb '20</h4>
<br />
<p class="truncated">
Six easy pieces, Surely you're joking, Mr Feynman, The
Pleasure of Finding Things Out, does it all sound a bit
familiar? Well, then we have something of real interest
for your enthusiastic curious souls. This Tuesday, the
11th of February, Physics and Astronomy Club is bringing
to all the skeptics, to the ones who have faith in
nature's simple truths, our very own inspiration, Mr
Richard Feynman. He is considered by many as the most
brilliant, influential and eccentric figure. A Nobel prize
winning physicist, he's well know for his contributions to
quantum physics, particle physics, quantum computing and
nano technology. He changed the way basic physical
processes are conceptualised and calculated. Feynman
showed us the art of using colloquial, no frills language
and everyday examples, to explain complex problems. We
bring to you one of the greatest minds in the history of
physics, be with us this Tuesday for the documentary
screening of Mr Richard Feynman.
</p>
<label for="expanded2" role="button">read more</label>
</div>
</div>
</div>
</div>
<div class="poster">
<div class="poster">
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters3.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded3" />
<h1>Relativity in 21st century</h1>
<h4>23rd Apr '19</h4>
<br />
<p class="truncated">
How often have you been into conversations about
'Relativity' and 'Spacetime' with your friends? Want to
know what's going on in with Relativity in the modern
day and age? A talk on experiments and the present
happenings in Relativity in recent times. We can promise
you a lot of interesting stories and exciting physics to
think about for an hour. Do join us! Physics and
Astronomy Club invites you to Relativity in the 21st
century by Prof. V. Ravishankar on 23/4/2019. Venue:-
Lecture Hall Compex, IIT Delhi Time:- 6:30-7:30
</p>
<label for="expanded3" role="button">read more</label>
</div>
</div>
</div>
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters4.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded4" />
<h1>Space Missions</h1>
<h4>29th Sept '19</h4>
<br />
<p class="truncated">
Planned you post minor trip yet? Perhaps you're on the
Rendezvous hype train? Well, we've just brought you
another thing for you to get hung up on! This Sunday,
we're going to be kicking off a 3-part lecture series
covering all aspects of space missions, the planning,
execution and future of our conquest to wrap the entire
universe within our fingertips. If we have to leave our
planet behind shortly, what all would we need to do?
What resources do we have available? How would you plan
for a space mission? Well, all this and more will be
covered as part of the talks. The first of which will be
held tomorrow from the SAC Committee room will tell you
all about how trajectories are planned, what propulsion
systems are used, and how the rocket system works! So,
make sure you've cleared out your schedule this Sunday,
29th September from 4 PM, so that you can be a part of
this engaging talk!
</p>
<label for="expanded4" role="button">read more</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="posters">
<div class="poster">
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters5.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded5" />
<h1>Science in Space</h1>
<h4>30th Sept '19</h4>
<br />
<p class="truncated">
What comes to mind when you hear Moon/Mars human
exploration, Deep space engineering or exo-planets? Cool
words, right? But apart from being fancy, what do these
mars/moon missions and deep space exploration missions
hope to learn? Don't have an answer? Not to worry, it's
quite common for people to get overwhelmed by the sheer
novelty of outer space that they forget to think about why
each mission is launched. Each mission is the culminated
effort of many people over several years and is optimized
to give us the best insights into questions that advance
our knowledge of the known universe. There are currently
several projects lined up for takeoff all over the world.
What do they hope to uncover? What are the next big
questions we hope to answer? To unveil these answers and
more IIT Delhi and American Centre's iHub cordially invite
you all to a talk by Ann Devereaux on the 30th of
September at 2 PM. Ann works with NASA's Jet propulsion
laboratory and was closely involved with the curiosity
rover which launched in 2011 and works on its cousin
project, which is on stand by for launch in 2020. So mark
the date and listen to one of the leading engineers
working to improve our understanding of the known
universe.
</p>
<label for="expanded5" role="button">read more</label>
</div>
</div>
</div>
</div>
<div class="poster">
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters6.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded7" />
<h1>Quark Science</h1>
<h4>21st Feb '20</h4>
<br />
<p class="truncated">
The quantum realm is quite a mystery to the world. The
inhabitants of the it, even more so! There's the family of
Quarks, Bosons, Leptons and dont even get me started on
the specific names of each of 'em! It goes from cool to
odd to down right WHAA? real quick! There're even quarks
named the "strange" quark and the "charm" quark! (talk
about being biased, huh!) Now here's the real exciting
part, you know that thing that we find these particles in?
empty space? yeah, according to scientists, its not quite
so empty! To expand more on this strange microscopic world
and the science of empty space, the Physics and Astronomy
club are putting on the screening of "Quark Science", the
award winning documentary series hosted by renowed
theoretical physicist, author and broadcaster Jim Al
Khalili, on the 21st of February, Friday 6 PM from LH 308.
</p>
<label for="expanded7" role="button">read more</label>
</div>
</div>
</div>
<div class="card-wrap">
<div class="card">
<div class="card-front">
<img src="Figures/posters7.png" alt="PAST EVENTS" />
</div>
<div class="card-back">
<input type="checkbox" id="expanded7" />
<h1>Cosmo Conference</h1>
<h4>10th Feb '19</h4>
<br />
<p class="truncated">
Join us this Sunday as Physics and Astronomy Club(PAC)
presents to you CosmoConference 2019! It's going to be a
small and interactive discussion on Cosmology and
interesting tidbits about it. So, turn up at SAC CR at 5
pm this Sunday(10th Feb) and be rest assured of an hour of
stimulating stuff!
</p>
<label for="expanded7" role="button">read more</label>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="updates">
<h1>LATEST UPDATES</h1>
<div class="iframes">
<div class="fb">
<div
class="fb-page"
data-href="https://www.facebook.com/PhysicsAndAstronomyIITD"
data-tabs="timeline"
data-width=""
data-height="400px"
data-small-header="false"
data-adapt-container-width="true"
data-hide-cover="false"
data-show-facepile="true"
>
<blockquote
cite="https://www.facebook.com/PhysicsAndAstronomyIITD"
class="fb-xfbml-parse-ignore"
>
<a href="https://www.facebook.com/PhysicsAndAstronomyIITD"
>Physics & Astronomy Club, IIT Delhi</a
>
</blockquote>
</div>
</div>
<div class="youtube">
<iframe
src="https://www.youtube.com/embed/kL_JnD2PxJI"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
</section>
</main>
<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="#" 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="team.html" 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>