nav

abbr.

navigate; navigation; navigation; navigable; navigable


html5<nav> tag syntax

Function: The <nav> tag defines the part of the navigation link.

Note: If there is a "before and after" button in the document, it should be placed in the <nav> element.

html5<nav> tag example

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>
Run instance »

Click the "Run instance" button to view the online instance