Ramesh Bhuttewadkar
last year
Rameshcountry asked

What is the difference between an HTML tag and an HTML element?

Sanjeev Pandit
Expert
last year

Hi Ramesh Bhuttewadkar,

A tag is the part inside angle brackets, like <p> or </p>.

An element is the full thing, meaning the opening tag + the content + the closing tag.

Example:

<p>Hello</p>
  • Tags: <p> and </p>

  • Element: <p>Hello</p>

If you have more questions, I am here to help 😊

HTML
This question was asked as part of the Learn HTML course.