diff --git a/index.html b/index.html index e258eaa..577508b 100644 --- a/index.html +++ b/index.html @@ -151,7 +151,7 @@ <h4>Organized By</h4> <span>Panimalar Engineering College</span> </p> - <div class="icon"> + <div class="icon" onclick="redirectToWebsite()"> <h4>In-association with</h4> <img src="img/sponsors/gdsc.svg" width="300px" alt="gdsc" /> </div> @@ -159,6 +159,16 @@ <h4>In-association with</h4> </div> </div> </section> + <script> + function redirectToWebsite() { + window.location.href = "https://developers.google.com/community/gdsc"; // Replace with the actual website URL + } + </script> + <style> + .icon { + cursor: pointer; + } + </style> <!-- End About Section -->