Skip to content

Commit

Permalink
Members.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mukundhtummidi authored May 13, 2024
1 parent 6690074 commit ec0ae05
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Members.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" />
<link rel="icon" type="image/png" href="https://res.cloudinary.com/drcjc86ft/image/upload/v1710501006/title_logo_jkk3lh.png"/>
<link rel="stylesheet" href="Members.css">

</head>
<body>
<body class="background">
Expand All @@ -22,7 +21,7 @@
<li><a href="index.html">HOME</a></li>
<li><a href="Events.html">EVENTS</a></li>
<li><a href="Projects.html">PROJECTS</a></li>
<li><a href="">BLOG</a></li>
<li><a href="#">BLOG</a></li>
<li><a href="Gallery.html">GALLERY</a></li>
<li><a href="Members.html">MEMBERS</a></li>
<li><a href="">YOUTUBE</a></li>
Expand Down Expand Up @@ -160,6 +159,13 @@ <h1>MLSA MEMBER'S</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>

<script>

const menuIcon = document.getElementById('menu-icon');
const menu = document.getElementById('menu');
function toggleMenu() {
menu.classList.toggle('visible');
}
menuIcon.addEventListener('click', toggleMenu);

$(document).ready(function(){

Expand Down

0 comments on commit ec0ae05

Please sign in to comment.