Hey Guys,
Ive always wondered about this. I like to create super navigation menus. The website I am currently working on for example has a blog tab at the top, which has a drop down with latest blog posts and some other stuff.
Should I use heading tags for Semantics and SEO?
Here is my current structure:
<li class="submenu supermenu" id="blogmenu">
<a href="/blog/">Blog</a>
<ul>
<li>
<h4>Recent Posts</h4>
<ul id="recentposts">
<li>
<h5><a href="/blog/some-blog">Some blog title</a></h5>
<p>Snippet of blog post here...</p>
</li>
<li>
<h5><a href="/blog/some-blog">Some blog title</a></h5>
<p>Snippet of blog post here...</p>
</li>
</ul>
</li>
<li><a id="bloglink" href="/blog/">View the full Blog</a></li>
</ul>
</li>
What do you guys think?