How to Create Website Sidebar Menu ?
SEO Help and Tips
How to Create Website Side Panel ?
Here is example code of sidebar menu:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colorful Side Panel with Links</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
}
.side-panel {
width: 250px;
background-color: #3498db; /* Blue color */
color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.menu-item {
margin: 10px 0;
padding: 10px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none; /* Remove default underline from links */
color: white;
display: block;
}
.menu-item:hover {
background-color: #2980b9; /* Darker blue color on hover */
}
</style>
</head>
<body>
<div class="side-panel">
<h2>Menu</h2>
<a href="https://www.example.com" class="menu-item">Home</a>
<a href="https://www.example.com/about" class="menu-item">About Us</a>
<a href="https://www.example.com/services" class="menu-item">Services</a>
<a href="https://www.example.com/portfolio" class="menu-item">Portfolio</a>
<a href="https://www.example.com/contact" class="menu-item">Contact</a>
</div>
<div class="content">
<!-- Your main content goes here -->
</div>
</body>
Comments
Post a Comment
Thanks for your Comments.