0
0
HTMLmarkup~20 mins

Navigation structure basics in HTML - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Navigation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:00remaining
What is the main purpose of the
Choose the best description of the
AIt creates a container for all the main content on the page.
BIt defines a section of navigation links to help users move around the site.
CIt is used to add decorative images to the webpage header.
DIt is used to embed videos and multimedia content.
Attempts:
2 left
💡 Hint
Think about what helps users find their way on a website.
📝 Syntax
intermediate
1:30remaining
Which HTML snippet correctly creates a navigation bar with three links?
Select the valid HTML code that uses semantic elements for navigation.
A<nav><ul><li><a href="#home">Home</a></li><li><a href="#about">About</a></li><li><a href="#contact">Contact</a></li></ul></nav>
B<navigation><list><item><link href="#home">Home</link></item></list></navigation>
C<div><p><a href="#home">Home</a><a href="#about">About</a><a href="#contact">Contact</a></p></div>
D<nav><a>Home</a><a>About</a><a>Contact</a></nav>
Attempts:
2 left
💡 Hint
Remember to use semantic tags and proper nesting for lists and links.