Untitled
unknown
plain_text
9 months ago
516 B
6
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")
})Editor is loading...
Leave a Comment