Navigation
Top Navigation Bar
A responsive top navbar with a logo, inline links and a call to action button aligned in one row.
<nav class="topnav-bar">
<span class="topnav-logo">Gwecode</span>
<div class="topnav-right">
<a class="topnav-link" href="#">Home</a>
<a class="topnav-link" href="#">Courses</a>
<a class="topnav-link" href="#">Projects</a>
<a class="topnav-link" href="#">About</a>
<button class="topnav-cta">Sign Up</button>
</div>
</nav>
.topnav-bar {
box-sizing: border-box;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 28px;
background-color: #ffffff;
border-bottom: 1px solid #e5e7eb;
font-family: system-ui, -apple-system, sans-serif;
}
.topnav-logo {
font-size: 18px;
font-weight: 800;
color: #111827;
}
.topnav-right {
display: flex;
align-items: center;
gap: 26px;
}
.topnav-link {
text-decoration: none;
color: #374151;
font-size: 14px;
font-weight: 500;
transition: color 0.2s ease;
}
.topnav-link:hover {
color: #3b82f6;
}
.topnav-cta {
background-color: #3b82f6;
color: #ffffff;
border: none;
padding: 9px 18px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s ease;
}
.topnav-cta:hover {
background-color: #2f6fe0;
}