I've designed a navigation bar with a logo, but the placement of the logo is not right (refer to the image). I am aware of how to resize the image to fit within the navbar, however, I intend to adjust the height of the navigation bar to align with the size of the logo.
https://i.sstatic.net/CLcRj.png
Below is the code I have used:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title> Mobtech </title>
<!-- Insert bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-container">
<span class="sr-only"> Show and hide navigation </span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img src="Images/logo.png" alt="LogoImage"/>
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-container">
<ul class="nav navbar-nav">
<li class="active"><a href="#"> Home </a> </li>
<li><a href="#"> Personal Users </a> </li>
<li><a href="#"> Business Users </a> </li>
<li><a href="#"> Devices </a> </li>
<li><a href="#"> About Us </a> </li>
</ul>
</div>
</div>
</nav>
<br />
<!-- JavaScript file -->
<script src="js/jquery.min.js"></script>
<!-- Minified JavaScript file -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
I haven't added any custom CSS. Is it necessary for me to create one? I'm fairly new to using Bootstrap.