HTML Body Tag
The <body> element contains all the content of the document. the content that will be displayed on screen,such as divs,sections, links, images,forms,tables,video all other items also/ Example <html> <head><title> Title of the web page</title></head> <body> <section> <div> It is body of the web page</div> </section> </body> </html> Differences HTML 4.0 and HTML5 All body attributes are removed in HTML5 Global Attributes The <body> tag also supports the Global Attributes Event Attributes The <body> tag also supports the Event Attributes Attributes Attribute Value Description alink color color of an active link in a webpage background URL background image for a webpage …