console.log("This javascript was loaded, and it printed this message to the console"); var aboutButton = document.getElementById('about-button'); var about = document.getElementById('about'); aboutButton.style.display = 'block'; about.style.display = 'none'; aboutButton.onclick = function(e) { e.preventDefault(); aboutButton.style.display = 'none'; about.style.display = 'block'; }