Home >Web Front-end >HTML Tutorial >What is nav tag?

What is nav tag?

云罗郡主
云罗郡主Original
2019-02-15 10:48:5314099browse

What is the tag of nav? The

nav tag defines the part of the navigation link and divides the links with navigation properties together, making the code structure more semantically accurate and providing better support for devices such as screen readers.

Function: Define the part of the navigation link.

Description: The c787b9a589a3ece771e842a6176cf8e9 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 c787b9a589a3ece771e842a6176cf8e9 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>


The above is the detailed content of What is nav tag?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn