diff --git a/index.html b/index.html
index d3bdc1a..22779ee 100644
--- a/index.html
+++ b/index.html
@@ -14,15 +14,16 @@
-
+
@@ -81,6 +82,11 @@
Welcome to the Web Development Quiz
const modal = document.getElementById("chatModal");
modal.style.display = modal.style.display === "block" ? "none" : "block";
}
+
+ function toggleMenu() {
+ const nav = document.getElementById("navLinks");
+ nav.classList.toggle("show");
+ }