I need assistance to modify my code so that it will have the following appearance:
I successfully created a navigation bar icon and inserted the logo, but I am struggling to position the data above the navigation icon:
My current code:
<nav class="navbar navbar-light bg-dark">
<a class="navbar-brand text-light" href="#">
<img src="logo.png" width="30" height="30" alt="">
My Photos
</a>
<div class="row">
<div class="collapse" id="navbarToggleExternalContent">
<div class="bg-dark p-4">
<h3 class="text-white h3 ">Contact</h3>
<span class="text-white">Follow on Twitter</span>
<p class="text-white">Like on Facebook</p>
<p class="text-white">Email me</p>
</div>
</div>
</div>
<nav class="navbar navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>