Which HTML5 element defines navigation links?
The <nav> element defines a set of navigation links.-
Notice that NOT all links of a document should be inside an <nav> element. The <nav> element is intended only for a major block of navigation links.
Browsers, such as screen readers for disabled users, can use this element to determine whether to omit the initial rendering of this content.
Example:-
A set of navigation links,
<nav>
<a href="/html/">HTML</a> |
<a href="/css/">CSS</a> |
<a href="/js/">JavaScript</a> |
<a href="/jquery/">jQuery</a>
</nav>
Which HTML5 element is used to display a scalar measurement within a known range?
Which input type defines a week and year control (no time zone)?
Which input type defines a slider control?
In HTML5, which attribute is used to specify that an input field must be filled out?
Which built-in HTML5 object is used to draw on the canvas?