nextRound
TechnologiesCoding ProblemsBookmarksLearning PathsLogin
nextRound
TechnologiesCoding ProblemsBookmarksLearning PathsLogin
Questions
6 of 8
1 What are semantic elements and why do they matter?
2 List all semantic tags and when were they introduced ?
3List all semantic tags and when were they introduced?
4Difference between <div> and <section>?
5What is the use of <nav>?
6What is the purpose of <article> ?
7What is a semantic element?
8Name 3 semantic tags introduced in HTML5?
HTMLHTML
Basics
Common Tags
Attributes and Elements
Lists
Text tags and Formatting
Input and Forms
Block and Inline Elements
Box model
Semantic Tags
Links and Images
Media and Embeds
Tables
HTML entities
HTML and CSS
Performance
SEO
Progressive Enhancement
HTML5
Custom Elements & Web Components
HTML5 APIs
SPAs
WCAG
Security
Best Practices
06 / 08
nextRound

AI-powered interview preparation platform. Practice with curated questions, mock interviews, and personalized learning paths to crack your dream tech interview.

Quick Links

  • Technologies
  • Mock Interviews
  • Saved Questions
  • Pricing

Company

  • About Us
  • Contact Us

Legal

  • Privacy Policy
  • Terms of Use

© 2026 nextRound. All rights reserved.

What is the purpose of <article> ?

Purpose of <article> Element

The <article> element is a semantic block-level element used to represent a self-contained piece of content that can stand on its own. It is often used for blog posts, news stories, forum entries, or any content unit that could be distributed or reused independently.

Key Points
  1. 1<article> represents independent, self-contained content.
  2. 2

    Common uses: blog posts, news articles, forum posts, product cards, or documentation sections.

  3. 3

    Each <article> should make sense on its own, even if taken out of context.

  4. 4

    It can contain its own <header>, <footer>, <section>, and even nested <article> elements.

  5. 5

    Search engines and assistive technologies recognize it as a standalone unit of meaningful content.

Example Usage

In short: Use <article> when the content is self-contained and could be independently reused or syndicated outside the page.