You heard the title. I'm working on a webpage at www.thundergamingforums.com and I can't seem to find how to do that. Please explain in CSS/HTML, however if you need to please completely rewrite the code in whatever language it takes.
<!DOCTYPE html>
<html>
<head>
<style>
#navbarc {}
#navbarc ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #222;
}
#navbarc li {
float: left;
}
#navbarc li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
#navbarc li a:hover:not(.active) {
background-color: #111;
transition: color .1s;
color: #00a6ff;
}
#navbarc .active {
background-color: #00a6ff;
}
</style>
</head>
<body>
<div id="navbarc">
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#about">Forums</a></li>
<li><a href="https://www.youtube.com/channel/UCUKBcVKyI6rpgBFu9Zp5_ZA">Youtube</a></li>
<li><a href="http://steamcommunity.com/groups/officialthundergaming">Steam Group</a></li>
</ul>
</div>
</body>
</html>