tags:

views:

62

answers:

2

Can we use <nav> tag with the rest of <header> tag in HTML 5?

A: 

The HTML5 spec has an example where a nav element is a child of a header element, so yes.

jleedev
+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.

See http://www.w3schools.com/html5/tag_nav.asp

FatherStorm