Elements Of HTML

An HTML element is defined by a start tag, some content, and an end tag.

<tagname>Content goes here...<tagname>

Nested Elements of HTML

HTML elements can be nested (this means that elements can contain other elements).

All Elements of HTML Consist of nested HTML elements.

This example includes four HTML elements like <html> <body> <h1> <p>

img-1

Explanation of above example

  • The <html> element is the root element and it defines the whole HTML document.
  • It has a start tag <html> and an end tag </html>.
  • Then, inside the <html> element there is a <body> element:
  • The <body> element defines the document's body.
  • It has a start tag <body> and an end tag </body>.
  • Then, inside the <body> element there are two other elements: <h1> and <p>.
  • The <h1> element defines a heading.
  • It has a start tag <h1> and an end tag </h1>:
  • It has a start tag <p> and an end tag <p>: