I'm currently working on creating a menu using HTML. I've included my links in an unordered list (ul) as shown below. In my CSS, I added a display:inline; property to the links to make them appear side by side like a menu. However, for some reason, it doesn't seem to be working.
#menu a {
text-decoration: none;
}
#menu ul {
list-style: none;
}
#menu ul li a {
display: inline;
}
<div id="menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="offers.php">Special Offers</a></li>
<li><a href="staff.php">Meet Our Staff</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>