Home >Web Front-end >HTML Tutorial >What is the function of nav?
What is the function of nav?
HTML
Definition and Usage
The
Differences between HTML 4.01 and HTML 5
The
Tips and Notes
Tip: If there is a "before and after" button in the document, it should be placed in a
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>
Effect:
(Video tutorial recommendation: html video tutorial)
Note: Internet Explorer 8 and earlier versions do not support the
The above is the detailed content of What is the function of nav?. For more information, please follow other related articles on the PHP Chinese website!