I've read in several places that there's no need to use <nav>
inside <footer>
when all you're linking to is copyright, terms and conditions, etc.
However, a site I'm working on has these links in the footer: News, Careers, Privacy. Obviously Privacy fits the above description for not using <nav>
. But News and Careers - although they're obviously not being given as much weight as items in the main nav at the top - are significant areas of content, which aren't linked to from elsewhere. Would these justify the use of <nav>
?
My guess is yes, but I'm a HTML5 newbie, so I thought I'd ask for a second opinion!
<nav>
element is intended to mark up 'major' navigation blocks" - blocks, plural - so it's not just for the primary nav. "In particular, it is common for footers to have a short list of links to various pages of a site, such as the terms of service, the home page, and a copyright page. The footer element alone is sufficient for such cases." Fine. However, News and Careers are plainly not in this category - hence me posting a new question. There may be issues with the IA / design here, but all that's been signed off - I've just got to mark it up right :) – Disregard