Wow nice work. I like how you made your nav bar/ headers match the rest of the forum and I like the white box that ties it all together. Now, where do I start? I'm confused about if I need to add html tags to the header boxes etc.

I HTML but I'm also learning how CSS works but I don't fully get the Div stuff.

I'm trying to just add a simple nav bar and go from there but its not showing up.

This is what I'm putting in the Header box:


<link type="text/css" rel="stylesheet" href="forum/styles/newsurf.css" />

<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>




And here is the external CSS



ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a:link,a:visited
{
display:block;
width:120px;
font-weight:bold;
color:#FFFFFF;
background-color:#98bf21;
text-align:center;
padding:4px;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#7A991A;
}


It should look something like this:

http://www.w3schools.com/css/tryit.asp?filename=trycss_navbar_horizontal_float_advanced