logo
HTML5 Nav Tag
The <nav> tag defines a set of navigation links.

Notice that NOT all links of a document should be inside a <nav> element. The <nav> element is intended only for major block of navigation links.
Example :
	
<!DOCTYPE html>
<html>
 
    <head>
    <title>HTML5 NAV Tag</title>
    </head>
    
<body>
 
<header>
<nav>
 
  <a href="http://www.google.com" target="_blank">Google</a> |
  <a href="http://www.microsoft.com" target="_blank">Microsoft</a> |
  <a href="http://www.Linkedin.com" target="_blank">Linkedin</a> |
  <a href="http://www.Twitter.com" target="_blank">twitter</a> |
  <a href="http://www.Facebook.com" target="_blank">facebook</a>
 
</nav>
</header>
 
</body>
</html>
Output :