HTML <body> element
<body>
tag declares the main page content. Contents inside <body>...</body> will be display,
while contents inside <head>...</head> will not be displayed.
<!DOCTYPE HTML> <html> <head> </head> <body> The browser rendered content. </body> </html>
The above web page will displayed as:
The browser rendered content.