I have a simple menu bar and just want to horizontal spacing between a text and hyperlink. Here is my code:
<div id="rectangle">
<p class="x">Home Page
<a href="hello">Home</a> <a href="user">user</a></p>
</div>
In the style field, I have
p.x {
color: white;
font:25px arial,sans-serif;
position:relative;
left:20px;
}
#rectangle {
width: 100%;
height: 70px;
background: deepskyblue;
position: fixed;
top: 0;
left: 0;
bottom: 20;
}
I want to have space betwwen "Home Page" and "Home"/"user".
I appreciate if someone could help me.