HTML Header Navigation Bar

  • Post category:CSS

Get the code of HTML Header Navigation Bar and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<div class="nav">
  <a href="#">Home</a>
  <a href="#">About</a>
  <a href="#">Contact</a>
</div>
.nav {
  background: green;
  padding: 10px;
}
a {
  color: white;
  background: red;
  padding: 1px 5px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}