Body Tag
- HTML document's body is defined by the Body element.
- The Body tag contains all the contents like text, graphics, images, colors, etc.,).
- It has some attributes. (bgcolor, for example)
- Example of Body Tag.
<html> <head> <title>Title goes here</title> </head> <body bgcolor="green"> This is the body section of this HTML document. </body> </html>