Home >Web Front-end >HTML Tutorial >In HTML5, this section only contains navigation links

In HTML5, this section only contains navigation links

WBOY
WBOYforward
2023-09-08 17:29:021064browse

In HTML5, this section only contains navigation links

HTML

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Nav Tag</title>
   </head>
   <body>
      <p>Database Tutorials:</p>
      <nav>
         <a href = "dbms/index.htm">DBMS</a> |
         <a href = "mongodb/index.htm">MongoDB</a> |
         <a href = "mysql/index.htm">MySQL</a> |
         <a href = "plsql/index.htm">PL/SQL</a> |
         <a href = "sql/index.htm">SQL</a>
      </nav>
   </body>
</html>

The above is the detailed content of In HTML5, this section only contains navigation links. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete