culTest

    One of the 25 questions in this topic

    How much do you know about Semantic Architecture and Hierarchy?

    What is the key semantic difference between the <section> and <article> tags?

    Answers

    <section> is only for visual content and <article> is for text.
    <article> should make sense on its own and be independently distributable, while <section> is a thematic grouping.Correct
    <section> does not allow headings, h2 to h6, while <article> does.
    They are identical tags and can be used interchangeably according to HTML5.

    An <article> is a self-contained unit of content, such as a post or widget. A <section> is used to group related content within a document or an article.