Title is pretty much it. Doing the product landing page HTML/CSS project and I’m trying to get the nav links on the same horizontal line as the logo, as seen in the example. And how do I get it to the far right?
Here’s what I have so far:
<header id="header">
<div class="logo">
<img alt="movers logo" id="header-img" src="https://www.logotreasure.com/logos/logotreasure_540x340_1421937114.jpg" width="150" />
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#Services">Services</a></li>
<li><a class="nav-link" href="#pricing">Pricing</a></li>
</header>
</nav>
li {
float: left;
list-style: none;
font-family: Tahoma;
}
a {
display: block;
padding: 8px;
background-color: #dddddd;
}