Basic HTML Structure

Basic HTML Structure

Table of contents

No heading

No headings in the article.

Hello Everyone! Today we will discuss the basic structure of our HTML document. The importance of different tags we have in the basic structure.

  1. In the beginning, we have the <HTML> tag, which helps the browser to identify which section of code is part of the HTML document. This tag represents the root of the HTML document.

  2. Then we have the <HEAD> tag. As the name suggests, it is just like the head we have in our body. This tag contains the metadata or the information related to the document. It helps in Search Engine Optimisation.

  3. After the <HEAD> tag, we get to see the <BODY> tag. Under this tag, we hold all the content we want to display on our web page. Just like our body contains organs

    the HTML <BODY> tag contains the content of our website.