HTML <NAV> TAG
Definition and Usage
The Navigation tag or <NAV> is a tag introduced in HTML 5 to Enhance the Experience of the web .The set of links in the <nav> tag are Navigation links .This tag Doesn't have all the links of the page instead it allows the programmer to make information accessible easily .Even Screen Readers can identify the the link in the <nav> tag to be important
Browser Support
Example
<nav>
<a href="/html/">HTML</a>
<a href="/css/">CSS</a>
<a href="/js/">JavaScript</a>
<a href="/python/">PYTHON</a>
</nav>
<a href="/html/">HTML</a>
<a href="/css/">CSS</a>
<a href="/js/">JavaScript</a>
<a href="/python/">PYTHON</a>
</nav>
Post a Comment