1. Why is your "menu" UL wrapped by a DIV, which is wrapped by a DIV?
2. Why do you have anchors (A) inside the menu items?
3. Why SPANs inside the anchors?

Why not just this:


<ul id="nav">
    <li>News</li>
    <li>Team</li>
    <li>Gallery</li>
    <li>Contact</li>
</ul>

<ul id="content">
    <li>
        the content for the News tab
    </li>
    <li>
        the content for the Team tab
    </li>
    <li>
        the content for the Gallery tab
    </li>
    <li>
        the content for the Contact tab
    </li>
</ul>

Reply via email to