html body tag

In the html <body> tag is used to indicate to center of the html main content page section and which tag placed between the closing </head> and the closing </html> tags. In the body tag includes one or more content and links such as text, images, hyperlinks, tables and lists.

Syntax:

<html>
  <body> Text, Hyperlinks, Images </body>
</html>

Example Code



<html>
  <head>
    <title>Title of the page</title>
  </head>
  <body>
    The content of the page ......
  </body>
</html>

In the above example The content of the page text had add to inside of <body> tag.





Content