I'm struggling to make the menu align with the text logo. Every time I try, the menu ends up below the logo instead of beside it. Can anyone provide some assistance?
nav{
width: 1330px;
margin: 0px auto;
}
nav ul li{
text-transform: uppercase;
display: inline-block;
color: white;
float: right;
margin-right: 10px;
}
<nav>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Request a Quote</a></li>
</ul>
</nav>