Html 5 body tag

In the html5 <body> tag is used to indicate to center of the html main content page section and which tag placed between the </head> and the </html> tags. In the main difference between html5 and html 4.01,in the html5 all attributes removed from <body> tag.

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