<div class="navbar">
<li><a href="#">Home</a></li>
<li><a href="#">Home</a></li>
<li><a href="#">Home</a></li>
</div>
<ul>
<li>List item #1</li>
<li>List item #2</li>
<li>List item #3</li>
</ul>
ahaha shit I forgot that!Come on man, we're not just going to spoonfeed you the stuff you need to know, you'll never learn. You'll need to start learning out these tags: ul, li, ol (preference based) and even <nav> if you want.
Anyway, through a quick Google search of 'css nav tutorial' I got these:
There are plenty of videos/tutorials and so on. Just do a simple google search and ask for help once you get stuck.
You must be registered for see links
You must be registered for see links
- Or, if you prefer videos...
You must be registered for see links
@JonSnow - I would avoid doing that, a list-item (<li>) needs to be a child element of a <ul> in order to be valid. Like so..
HTML:<ul> <li>List item #1</li> <li>List item #2</li> <li>List item #3</li> </ul>