Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kiranjyot authored Aug 2, 2024
1 parent 227532c commit 8a9f894
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,27 @@
100% {
color: gold;
}
/* New styles for section headings */
.animated-heading {
font-weight: bold;
font-size: 2.5em; /* Adjust size as needed */
color: lightblue;
background: -webkit-linear-gradient(45deg, lightblue, lightpurple);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: headingColorChange 5s linear infinite;
}

@keyframes headingColorChange {
0% {
color: lightblue;
}
50% {
color: lightpurple;
}
100% {
color: lightblue;
}
}
</style>
</head>
Expand Down Expand Up @@ -126,15 +147,15 @@ <h2 class="w3-xlarge">Harvard Astrophysicist</h2>

<!-- About Section -->
<div class="w3-content w3-justify w3-text-white w3-padding-64" id="about">
<h2 class="w3-text-white">About Me</h2>
<h2 class="animated-heading">About Me</h2>
<hr style="width:200px" class="w3-opacity">
<p> I am an astrophysicist at the Center for Astrophysics | Harvard & Smithsonian, with a decade of dedication to gravitational-wave (GW) astrophysics. In January 2025, I will be the inaugural Sikh to graduate with a PhD in Astronomy & Astrophysics from Harvard. I was also the youngest member of the <a href="https://www.ligo.caltech.edu/">International Gravitational Wave Network (IGWN)</a> that discovered GWs from <a href="https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.116.061102">two merging binary black holes</a>. This singular discovery earned our global team numerous accolades, including the Nobel Prize in Physics, the UK Royal Astronomical Society Group Achievement Award in Astronomy, the Princess of Asturias Award from His Majesty the King of Spain, the Bruno Rossi Prize in High Energy Astrophysics from the American Astronomical Society in 2017, and the Special Breakthrough Prize in Fundamental Physics in 2018. Additionally, I have co-authored 100 scientific publications with more than 10,000 citations and have delivered numerous invited talks at universities, government summits, and media events.
</p>
</div>

<!-- Research Interests Section -->
<div class="w3-content w3-justify w3-text-white w3-padding-64" id="research">
<h2 class="w3-text-white">My Research</h2>
<h2 class="animated-heading">My Research</h2>
<hr style="width:200px" class="w3-opacity">
<p>
My primary research interest lies in the detection of gravitational waves from core-collapse supernovae (CCSNe). This involves using a variety of interferometers including terrestrial, space-based, and lunar-based detectors. The successful detection of these waves would mark a significant milestone in the field of gravitational wave astronomy, similar to the initial discovery of gravitational waves. Additionally, I am involved in the study of binary black hole mergers, neutron star mergers, and the development of advanced data analysis techniques for gravitational wave detection.
Expand All @@ -143,7 +164,7 @@ <h2 class="w3-text-white">My Research</h2>

<!-- Outreach Section -->
<div class="w3-content w3-justify w3-text-white w3-padding-64" id="outreach">
<h2 class="w3-text-white">My Outreach</h2>
<h2 class="animated-heading">My Outreach</h2>
<hr style="width:200px" class="w3-opacity">
<p>
I am committed to engaging with the community and sharing the excitement of astrophysics and gravitational wave research. I have given numerous talks at schools, universities, and public events to inspire the next generation of scientists. I also work on outreach programs aimed at increasing diversity in STEM fields, with a focus on supporting women and underrepresented minorities. By communicating the importance and wonder of astrophysics, I hope to encourage more young people to pursue careers in science.
Expand All @@ -152,7 +173,7 @@ <h2 class="w3-text-white">My Outreach</h2>

<!-- Contact Section -->
<div class="w3-padding-64 w3-content w3-text-white" id="contact">
<h2 class="w3-text-white">Contact Me</h2>
<h2 class="animated-heading">Contact Me</h2>
<hr style="width:200px" class="w3-opacity">
<div class="w3-section">
<p><i class="fa fa-globe fa-fw w3-text-white w3-xlarge w3-margin-left"></i> 60 Garden St, Cambridge, MA, USA</p>
Expand Down

0 comments on commit 8a9f894

Please sign in to comment.