<body> … </body> | The HTML <body> Element represents the content of an HTML document. There can be only one <body> element in a document |
Example
<html>
<head>
<title>Document title</title>
</head>
<body>
<p>This is a paragraph</p>
</body>
</html>
<body> … </body> | The HTML <body> Element represents the content of an HTML document. There can be only one <body> element in a document |
<html>
<head>
<title>Document title</title>
</head>
<body>
<p>This is a paragraph</p>
</body>
</html>