itintern - HTMLify profile

itintern's Profile Picture

itintern

72 Files

6815 Views

Latest files of /itintern/task1

index.css itintern/task1/index.css
101 Views
0 Comments
body{
margin:0px;
text-align:center;
background: linear-gradient(138deg, white, rgb(218, 207, 207));
font-family: "Roboto", sans-serif;
line-height: 1.6;
}

index.html itintern/task1/index.html
41 Views
0 Comments
File is locked
index.js itintern/task1/index.js
168 Views
0 Comments
sidenav = document.querySelector(".sidenav");
menuIcon = document.querySelector(".ri-menu-line");
navCloseBtn = document.querySelector(".ri-close-large-line");
menuIcon.addEventListener("click",()=>{
sidenav.style.display = "flex";

});
navCloseBtn.addEventListener("click",()=>{