The HTML <body> tag defines the document's body. The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. The body tag is placed between the </head> and the </html> tags.
<html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html>