I recently embarked on the journey of learning HTML, CSS, and bootstrap.
While experimenting with navbars, I noticed that there seems to be a lack of spacing between the items in the navbar.
Below is the code snippet:
<html>
<head>
<title>Bootstrap Nav Bars </title>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-default navbar-expand navbar-light bg-light">
<div class="navbar-header">
<a class="navbar-brand" href="#">Kofee</a>
</div>
<div class="nav navbar-nav">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-item" href="#">About</a></li>
<li class="nav-item"><a class="nav-item" href="#">Contact</a></li>
<li class="nav-item"><a class="nav-item" href="#">Products</a></li>
</ul>
</div>
</nav>
</body>
</html>
Click here to view a screenshot of how it appears to me
Thank you for your assistance and time.