Is there a way to make links in unordered lists be non-underlined by default? And when the user hovers over the link, it becomes underlined?
Here's the current code:
<ul>
<li><a href="water">Water</a></li>
<li><a href="wastewater">Wastewater</a></li>
<li><a href="surveying">Surveying</a></li>
<li><a href="aerial">Aerial</a></li>
<li><a href="it">Technology Consulting</a></li>
</ul>
On the page with the lists, all of the links are underlined by default and the underline goes away when you hover over it. We want the opposite of this.