15/02/2026
Simple Header
body {
margin: 0;
font-family: Arial, sans-serif;
}
header {
background: ;
padding: 15px 0;
}
container {
width: 90%;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
}
logo {
color: ;
font-size: 22px;
font-weight: bold;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
color: ;
text-decoration: none;
font-size: 16px;
transition: 0.3s;
}
nav ul li a:hover {
color: ;
}
/* Mobile Menu */menu-toggle {
display: none;
font-size: 24px;
color: ;
cursor: pointer;
}
(max-width: 768px) {
nav {
display: none;
width: 100%;
}
nav ul {
flex-direction: column;
background: ;
padding: 10px 0;
}
nav ul li {
margin: 10px 0;
text-align: center;
}
.menu-toggle {
display: block;
}
nav.active {
display: block;
}
}
MyWebsite
☰
Home
About
Services
Contact
function toggleMenu() {
document.getElementById("navMenu").classList.toggle("active");
}