Skip to content

Instantly share code, notes, and snippets.

/* Floating menu */
.floating-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
z-index: 100;
}
<script>
document.getElementById("menu-button").addEventListener("click", function(event) {
event.preventDefault();
var dropdownMenu = document.getElementById("dropdown-menu");
dropdownMenu.style.display = dropdownMenu.style.display === "block" ? "none" : "block";
});
</script>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Professional Writing Services</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<nav>