You are here : htmlHTML 5nav

<nav> - HTML 5

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.

Browsers, such as screen readers for disabled users, can use this element to determine whether to omit the initial rendering of this content.


Syntax

    <nav>	  <a href="/html/">HTML</a> |  <a href="/css/">CSS</a> |  <a href="/js/">JavaScript</a> |  <a href="/jquery/">jQuery</a>	</nav>


Example

    <nav>	  <a href="/html/">HTML</a> |  <a href="/css/">CSS</a> |  <a href="/js/">JavaScript</a> |  <a href="/jquery/">jQuery</a>	</nav>


Output / Return Value


Limitations


Alternatives / See Also


Reference