adds favicon, changes menu

This commit is contained in:
2020-05-21 10:18:40 +02:00
parent 4a8ac52201
commit 934c4f2a1d
8 changed files with 78 additions and 10 deletions

View File

@ -0,0 +1,9 @@
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function menuBars() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}