HTML BODY (<body>) Tag
0 3654
The <body> tag signifies the document's body i.e. main content or a particular section of the HTML documents. The <body> element contains the entire content of a document, such as text, hyperlinks, images, tables, lists, etc. that will be directly observed on the webpage.
Body Tag is positioned inside the <html> element, after <head> tag. In one document there must be only one <body> tag.
The <body> tag is used as <body> </body> with the document's content inserted between the start i.e. <body> and end tag </body>.
Learn HTML Online for Beginners
Browsers Support:
Google Chrome | Firefox | Safari | Internet Explorer |
Code:
<html> <head> <title> Body Tag </title> </head> <body> The content of the document.... </body> </html>
Output:
Share:
Comments
Waiting for your comments