I´m trying to add icons to my menu, but when i add an icon it changes the font of the text next to it.
<div class="sidebar-heading">
<a href="?page=home">
<img src="SGIE/HOME2.png">
</a>
<a class="fa-solid fa-pen-to-square" href="?page=novo">Novo Pedido</a>
<a href="?page=listar">Equipamentos em Reparação</a>
<a href="?page=listarr">Equipamentos Reparados</a>
<a href="?page=entregues">Equipamentos Entregues</a>
<a href="?page=admin">Admin</a>
</div>
I tried to add a CSS class to my CSS file but it didn't do anything
I figured it out
<div class="sidebar-heading">
<a href="?page=home">
<img src="SGIE/HOME2.png">
<a href="?page=novo"><i class="fa-solid fa-pen-to-square"></i> Novo Pedido</a>
<a href="?page=listar">Equipamentos em Reparação</a>
<a href="?page=listarr">Equipamentos Reparados</a>
<a href="?page=entregues">Equipamentos Entregues</a>
<a href="?page=admin">Admin</a>
</div>