As I venture into the world of Bootstrap, I am on a quest to create a Navbar Component similar to this design:
https://i.stack.imgur.com/NidKQ.png
I attempted to use the Navbar Image and Text code, but encountered an issue where the text would only display in a single line. I tried inserting a line break, but then the text went below the logo resulting in a layout like this:
https://i.stack.imgur.com/Wy0jE.png
Here is the snippet of code that I referenced:
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b9dbd6d6cdcacdcbd8c9f98c978b9789">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet"/>
<nav class="navbar bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src=" https://getbootstrap.com/docs/5.2/assets/brand/bootstrap-logo-shadow.png" alt="" width="70" height="70" class="d-inline-block align-text-top">
Bootstrap <br> subheading
</a>
</div>
</nav>