Apologies if this question has been asked before, but I've searched everywhere and can't find an answer. All my searches just bring up dropdown menus with
<nav></nav>
Consider this table (serving as a navigation bar):
<table class="nav">
<tr>
<td><a href="index.html">Home</a></td>
<td><a href="/Videos">All</a></td>
<td><a href="spec.html">Specification</a></td>
<td><a href="chem.html">Chemistry</a></td>
<td><a href="bio.html">Biology</a></td>
<td><a href="phy.html">Physics</a></td>
<td><a href="feedback.html">Feedback</a></td>
<td><a href="donate.html">Donate</a></td>
</tr>
</table>
CSS:
table.nav {
border: 2px solid white;
background-color: black;
}
How could I implement a hover effect that displays a dropdown menu with links on this table? I'm opting for this approach due to design preferences and ease of use.