This is the html code for the hyperlinks. I wanted to have a slight gap between the texts. Like between ‘Menu’ and ‘Contact Us’ for instance. Thanks in advance.
<div id="navbar">
<a class="fb" href="menu.html">Menu</a></br>
<a href="ContactUs.html">Contact Us</a></br>
<a href="About Us.html">About Us</a></br>
<a href="TC.html">Terms & Conditions</a></br>
<a href="jobs.html" target="_blank">Jobs</a></br>
<a href="order.html">Your Order</a>
</div>
I set the line-height property in CSS as follows:
#navbar {
line-height:2em;
}
you should define a line-height in anchor not in navbar id see the example code:-
HTML
CSS
}
http://jsfiddle.net/8LFLd/50/
And the other proper method is i am mentioning below you should make navigation in proper ul li list items like mentioned below:-
HTML
CSS
demo:- http://jsfiddle.net/XZ9w7/3/