HTML5 Multiple choices


Total available count: 25
Subject - Web Development
Subsubject - HTML5

Which HTML5 element defines navigation links?


 

 

 

 



C


Solution:-

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>

 




Next 5 multiple choice(s)

1

Which HTML5 element is used to display a scalar measurement within a known range?

2

Which input type defines a week and year control (no time zone)?

3

Which input type defines a slider control?

4

In HTML5, which attribute is used to specify that an input field must be filled out?

5

Which built-in HTML5 object is used to draw on the canvas?

Comments