HTML Elements

There are 100+ HTML elements .Standard elements that browser recognizes: Paragraph

 <p> paragraph text</p>

Heading

<h1>Heading </h1>

Image The component used to design the structure of website are called HTML tags.

HTML Tags: A container for some content or other tags

<p> This is a paragraph </p>
  1. Paired tags (container tag): we should have close these type of tags. Otherwise they will not function properly. In paired tags the first tag <body> is often called the opening tag and the second tag </body> is called called be closing tag 2.singular tags(empty tags): These type of tag don’t have it’s ending tag like: <br> <hr> and <!>