Is there a way to display multiple icons on the left side of each element, with the option to have none or many? If so, could you please guide me in the right direction.
<header>
<nav>
<ul>
<a href="http://localhost:4000/">
<li class=" current btn-nav ">Blog</li>
</a>
<a href="http://localhost:4000/Projects">
<li class=" btn-nav ">Projects</li>
</a>
<a href="http://localhost:4000/About">
<li class=" btn-nav ">About</li>
</a>
</ul>
</nav>
</header>
Appreciate any help!