Why do we need a navigation menu with the current page obviously highlight AND a page title (<h2>
)?
Why not make the current navigation item the <h2>
? (and store it however you want, maybe you want to make it bigger than the rest slightly or whatever)
<h1><a href="#">Site Name</a></h1>
<ul>
<li id="current"><h2><a href="#">Home</a></h2></li>
<li><a href="account/">Account</a></li>
<li><a href="about/">About</a></li>
</ul>
<div id="content">
<!-- Content goes here. -->
</div>
What are the pros and cons of this approach? Also how would Googlebot treat this?