I want to create a navigation bar and I plan to separate the links with bullets, which is where <li> comes in. Here is the code I currently have.
<ul>
<li><a href="">Home</a> Â*Â*</li>
<li><a href="">Smallville</a> Â*Â*</li>
<li><a href="">Legend of the Seeker</a> Â*Â*</li>
<li><a href="">Heroes</a> Â*Â*</li>
<li><a href="">Lost</a> Â*Â*</li>
<li><a href="">Simpsons</a> Â*Â*</li>
<li><a href="">The Office</a> Â*Â*</li>
<li><a href="">Wipeout</a> Â*Â*</li>
</ul>
How can I make it so the <li> doesn't automatically make the links go to the next line?
<ul>
<li><a href="">Home</a> Â*Â*</li>
<li><a href="">Smallville</a> Â*Â*</li>
<li><a href="">Legend of the Seeker</a> Â*Â*</li>
<li><a href="">Heroes</a> Â*Â*</li>
<li><a href="">Lost</a> Â*Â*</li>
<li><a href="">Simpsons</a> Â*Â*</li>
<li><a href="">The Office</a> Â*Â*</li>
<li><a href="">Wipeout</a> Â*Â*</li>
</ul>
How can I make it so the <li> doesn't automatically make the links go to the next line?