I'm a student and it's kinda new to me.
I was making a navbar with a icon and put an a tag around the icon.
But after that it changed the color of the icon.
I tried the "text-decoration: none" but no result.
I still have a purple icon after the line of css.
Any ideas?
Thank you!
<div class="header">
<a href="index.php"><i id="logo1" class="material-icons" style="font-size:55px;">home</i></a>
<img id="logo" src="media/fotos/logo.png">
<ul id="navlist">
</ul>
</div>
<style>
a{
text-decoration: none;
}
</style>