Possible Duplicate:
<nav> or <menu> (HTML5)
HTML have two semantic tags for create a menu in a page. Where I should use the tag <menu>, and where the tag <nav>. What is the difference in these tags?
P.S. Sorry for my english.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
<nav>Should be used for site/page navigation – it implies that clicking links in a nav element will take the browser to different content. It is quite widely supported and the latest version of most browsers will handle it natively.<menu>Is for UI features that don’t effect actual navigation – for example, if you had a rich text editor, any buttons you have for text formatting could go in a menu element. As far as I know menu isn’t supported by anybody yet.