I have successfully created a responsive Navigation bar. Now, I would like to add an "Account" link on the right side of the navigation.
My initial thought was to insert a div into a ul element, but I realize that this may not be W3C compliant.
<div class="navigation">
<ul>
<li><a href="#">Welcome</a></li>
<li><a href="#">Me</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Contact</a></li>
<div class="account">Account</div>
</ul>
<a href="#" class="pull">Navigation</a>
If you'd like to see a demo, check out this JS Fiddle Demo
The main requirement is for the "account" link to appear on the right side of the navigation, not alongside the other navigation items. When the screen size is under 700px, it should display below the contact link.
Here's an example of how I want it to look:
Apologies for any language barriers. I hope my issue is clear, and I welcome any suggestions or solutions you may have.