HTML
<!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!