As a novice in the world of HTML and CSS, I am struggling to align a logo and a menu properly on my webpage. Despite placing them in the same div and attempting to float them left and right respectively, they are still appearing misaligned.
If you'd like to take a look at my code, here is the link to the Fiddle.
Here is the HTML snippet:
<div class="set header">
<div class name="set logo">
<img src="image/r3v_logo2.png" alt=""/>
</div>
<div class="set mainmenu">
<ul>
<li><a href="">Home</a> </li>
<li><a href="">Forum</a> </li>
<li><a href="">Gallery</a> </li>
<li><a href="">About Us</a> </li>
<li><a href="">Facebook</a> </li>
<li><a href="">Help & FAQ</a> </li>
</ul>
</div>
</div>
Any help or advice would be greatly appreciated. Thank you!