BODY Html tag (main content section) | CodingSource

BODY Html tag (main content section)

Body (<body>) is the area and HTML tag that shows all the content, tables, headlines and any other elements you can think of in a page in HTML language. At the moment, everything from the point you see on this page to the comma and all other items in the site are included in the Body, which we define as an HTML tag.

<html>

   <head>

     <title>Page title</title>

   </head>

   <body>

     Document content...

   </body>

</html>

There are two most important tags when preparing an HTML page. One of them is the Body tag and the other is the Head tag. While the Head contains elements and information that will not be visible about the page, the Body tag contains the elements that should appear on the page.

The <body> tag defines the body of the document. Contents in HTML document; links, images, tables, etc. contained in this label.

Html Codes Related Posts

Newer Post Load More Pages..