Greetings! I currently have a functional website where the logo is displayed twice, each with different classes for various resolutions
<a class="navbar-brand" href="/">
<img class="d-none d-sm-block" width="279" height="70" src="logo.png">
<img class="d-block d-sm-none" width="232" height="58" src="logo.png">
#</a>
While this setup serves its purpose, it appears cluttered. I have been tasked with eliminating the duplicate image. Is there a way to achieve this in a single line of code?