Internal navigation of a site (home, about, contact, archive, faq, search, start here, credit, etc.,) comes under <nav> element; which is generally used as a child of <footer> element.
Example:
<footer>
<nav>
<h4> Navigation </h4>
<ul>
<li><a href="home.html"> Home </a></li>
<li><a href="about.html"> About </a></li>
</ul>
</nav>
</footer>
Comments
Post a Comment