Untitled

 avatar
unknown
plain_text
20 days ago
516 B
4
Indexable
function openNav() {
    document.getElementById("mySidenav").style.width = "250px";
    document.querySelector(".content").style.marginLeft = "250px";
  }
  
  // Close the sidenav
  function closeNav() {
    document.getElementById("mySidenav").style.width = "0";
    document.querySelector(".content").style.marginLeft = "0";
  }


  let darkbtn=document.querySelector(".dark-light");
  darkbtn.addEventListener("click",()=>{
    let body=document.body;
    body.classList.toggle("dark-mood")
  })
Leave a Comment