I am building a navagation bar and i am making a seprate div tag for each link so I can specify their margin-left because it is a horizontal bar.
Yet when I add the <div> tags it puts the next one on the next line:
<div>HOME</div>
<div>ABOUT</div>
<div>MUSIC</div>
<div>CONTACT</div>
That prints:
HOME
ABOUT
MUSIC
CONTACT
Yet when I remove them it prints
HOME ABOUT MUSIC CONTACT
How can I keep it horizontal and yet still style them.
Thanks so much
Will simply changing the
<div>‘s to<span>‘s work?Otherwise, add
style="float:left;"to the divs.