What is the difference between html Element and Attribute?

Experience Level: Junior
Tags: HTML

Answer

The element consists of 3 parts:

  • opening tag,
  • content
  • and closing tag

The opening tag can have zero or more attributes.

Each attribute consists of name and value.

Have a look at the following example:

Example
<p class="some-class" id="my-paragraph">Some paragraph</p>

If you break it down to separate parts:

  • The whole block is element
  • The <p class="some-class" id="my-paragraph"> is the opening tag
  • The Some paragraph is the content
  • The </p> is the closing tag
  • The class="some-class" is the first attribute where the attribute name is class and the attribute value is some-class
  • The id="my-paragraph" is the second attribute where the attribute name is id and the attribute value is my-paragraph

Comments

No Comments Yet.
Be the first to tell us what you think.
HTML for beginners
HTML for beginners

Are you learning HTML ? Try our test we designed to help you progress faster.

Test yourself