//get the ID of the header element var header = document.getElementById("header"); //Add the logo image, instagram link, and nav menu to the header header.innerHTML += ""; header.innerHTML += ""; header.innerHTML += ""; //get the ID of the footer element var footer = document.getElementById("footer"); //Add the locations to the footer footer.innerHTML = "

Calgary | Mississauga | Vancouver | Winnipeg

"; //get the ID of the header element var navBar = document.getElementById('navBar'); html = "×"; html += ""; navBar.innerHTML = html; function openNav() { document.getElementById('navBar').style.width = "300px"; // document.getElementById('navBar').style.display = "block"; } function closeNav() { document.getElementById('navBar').style.width = "0"; // document.getElementById('navBar').style.display = "none"; }