1D0-720 · Question #81
Which HTML5 element is specifically designed to represent a section of a document that could stand on its own?
The correct answer is A. <article>. <article> is correct because it represents a self-contained piece of content that could be independently distributed or syndicated - think blog posts, news articles, forum posts, or product cards. <section> is wrong because it groups thematically related content within a page…
Question
Which HTML5 element is specifically designed to represent a section of a document that could stand on its own?
Options
- A<article>
- B<section>
- C<aside>
- D<header>
How the community answered
(43 responses)- A93% (40)
- B2% (1)
- C5% (2)
Explanation
<article> is correct because it represents a self-contained piece of content that could be independently distributed or syndicated - think blog posts, news articles, forum posts, or product cards. <section> is wrong because it groups thematically related content within a page but lacks the self-contained independence that <article> implies. <aside> is wrong because it marks content that is tangentially related to the surrounding content, like a sidebar or pull quote. <header> is wrong because it represents introductory or navigational content for its nearest ancestor section, not a standalone document unit.
Memory tip: Think "article = could be cut out and pasted into a magazine" - if the content makes sense on its own without the rest of the page, it's an <article>.
Topics
Community Discussion
No community discussion yet for this question.