Can we use <nav>
tag with the rest of <header>
tag in HTML 5?
views:
62answers:
2
A:
The HTML5 spec has an example where a nav
element is a child of a header
element, so yes.
jleedev
2010-10-04 12:56:24
+2
A:
The <nav>
tag can be used to wrap any navigational links. Whether those links are in the header or the footer or otherwise in the page, if they are a distinct section for navigation, those links can be grouped within a <nav>
tag.
FatherStorm
2010-10-04 12:57:58