0

What is the difference between these tags <p> <article> <section> in html?

Manikandan
  • 1,234
  • 11
  • 18

1 Answers1

1

According to w3schools:

Section tag:

The section tag defines sections in a document, such as chapters, headers, footers, or any other sections of the document.

p tag:

The p tag defines a paragraph.

article tag:

The article tag specifies independent, self-contained content.

Roger Garcia
  • 327
  • 2
  • 12