Blog Post Title
Published on by Author Name
This is the content of your blog post. You can write as much as you like here.
/* Reset default list styles */ ul { list-style: none; padding: 0; margin: 0; } /* Style the navigation menu */ nav { background-color: #333; /* Background color */ } nav ul { display: flex; /* Horizontal layout */ justify-content: space-around; /* Spacing between items */ padding: 10px; } nav li { margin: 0; } nav a { text-decoration: none; color: #fff; /* Text color */ font-weight: bold; /* Bold text */ padding: 10px 20px; /* Spacing around text */ transition: background-color 0.3s, color 0.3s; /* Smooth transition effects */ } /* Hover styles for links */ nav a:hover { background-color: #555; /* Background color on hover */ color: #fff; /* Text color on hover */ } /* Active link style (current page) */ nav a.active { background-color: #555; /* Background color for active link */ color: #fff; /* Text color for active link */ }
Published on by Author Name
This is the content of your blog post. You can write as much as you like here.