Challenge - 5 Problems
Semantic Structure Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding semantic roles of and
Which statement best describes the difference between the and elements in HTML5?
Attempts:
2 left
💡 Hint
Think about which element can stand alone and be shared separately.
✗ Incorrect
📝 Syntax
intermediate2:00remaining
Identify the correct HTML structure using and
Which HTML snippet correctly uses and to structure a blog page with multiple posts?
Attempts:
2 left
💡 Hint
Think about which element groups multiple posts and which represents each post.
✗ Incorrect
A groups the blog posts, and each represents a single post.
❓ rendering
advanced2:00remaining
Visual result of nested and
What will the browser visually display for this HTML snippet?
HTML
<section> <h1>News</h1> <article> <h2>Headline 1</h2> <p>Details about headline 1.</p> </article> <article> <h2>Headline 2</h2> <p>Details about headline 2.</p> </article> </section>
Attempts:
2 left
💡 Hint
Remember that semantic tags do not change default display but help organize content.
✗ Incorrect
The groups the news content with a main heading, and each shows its own heading and paragraph.
❓ selector
advanced2:00remaining
CSS selector targeting inside
Which CSS selector correctly styles only elements that are direct children of a ?
Attempts:
2 left
💡 Hint
The '>' selector targets direct children only.
✗ Incorrect
The selector 'section > article' applies styles only to articles that are immediate children of a section.
❓ accessibility
expert3:00remaining
Improving accessibility with and
Which practice improves screen reader navigation when using and elements?
Attempts:
2 left
💡 Hint
Think about how screen readers identify sections and articles.
✗ Incorrect
Adding aria-label or aria-labelledby helps screen readers understand the purpose of each section or article.