Recall & Review
beginner
What is the purpose of the <nav> element in HTML?
The <nav> element defines a section of navigation links to help users and screen readers find important parts of a website easily.
Click to reveal answer
beginner
Which of these is a correct use of the <nav> element?
Using <nav> to wrap a list of main menu links or site sections is correct. It should not be used for all links on a page, only for major navigation.
Click to reveal answer
beginner
True or False: The <nav> element improves accessibility by helping screen readers identify navigation areas.
True. Screen readers use the <nav> element to quickly jump to navigation sections, improving user experience for people using assistive technology.
Click to reveal answer
intermediate
Can you have multiple <nav> elements on a single webpage?
Yes. You can have multiple <nav> elements for different navigation areas, like main menu, footer links, or sidebar navigation.
Click to reveal answer
intermediate
What is the difference between <nav> and a simple <div> with links?
<nav> is semantic and tells browsers and assistive tech that the links inside are for navigation. A <div> has no meaning and is just a container.
Click to reveal answer
What does the <nav> element represent in HTML?
✗ Incorrect
The
Is it correct to use multiple <nav> elements on one page?
✗ Incorrect
Multiple
Which is a benefit of using <nav> instead of a <div> for navigation?
✗ Incorrect
Where should you NOT use the <nav> element?
✗ Incorrect
Which HTML5 element is best for grouping navigation links?
✗ Incorrect
Explain the role of the
Think about how users find menus and links on a site.
You got /4 concepts.
Describe when and how you would use multiple
Consider a website with a top menu and footer links.
You got /4 concepts.