Which of the following tags represents a section of document used for navigation?
Answers
Answered by
1
'nav' tag represents a section of the document intended for navigation. Q 16 - Which of the following tag can be used to mark up a conversation in HTML5?
Answered by
0
The <nav> tag is used to easily navigate in the document.
For instance:
<nav>
<a href=""/html/"">HTML</a> |
<a href=""/css/"">CSS</a> |
<a href=""/js/"">JavaScript</a> |
<a href=""/jquery/"">jQuery</a>
</nav>
The main purpose of using this tag is to navigate easily within the navigation links.
It is very essential that the navigation point must be between the specific elements otherwise the loop won’t work on them.
Similar questions