abbr.navigate sailing; navigation sailing; navigational sailing; navigable navigable

html nav tag syntax

Function:Define the part of the navigation link.

Description: <nav> tag is a new tag in HTML 5.

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

html nav tag example

<!DOCTYPE html>
<html>
<body>

<nav>
    <a href="/course">教程</a> |
    <a href="/wenda">問答</a> |
    <a href="/article">文章</a> |
    <a href="/shouce">手冊</a>
</nav>
<p>nav標簽用來標識網站的導航</p>
</body>
</html>

Run instance ?

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