I have 3 buttons on my page and i was wondering if there is a way for them to not be underlined and dark blue like a link would be. so how do i make it not underlined?see what i mean here
<div class="menu">
<ul>
<li class="logo"> <a href="TributePage.html"> <img src="images/logo.png"></a></li>
<li><a href="TributePage.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="albums.html">Albums</a></li>
</ul>
</div>
.menu ul{
display: inline-flex;
margin: 50px;
font-family: 'Staatliches', cursive;
font-size: 25px;
}
.menu ul li{
list-style: none;
margin: 0 20px;
color: #1385d6;
cursor: pointer; }