Could someone help me with creating a HTML Navbar that displays inline and has a hover effect?
This is the HTML code I have been working on:
<nav class="navbar navbar-light bg-faded" style="background-color: #c8c8c8">
<div class="container-fluid d-inline-block" >
<a class="navbar-brand" href="#">
<img src="logo/new.png" width="30" height="30" class="d-inline-block " alt="">
NEW
</a>
<a class="navbar-brand" href="#">
<img src="logo/copy.png" width="30" height="30" class="d-inline-block" alt="">
COPY
</a>
</div>
</nav>