The "body" tag is used for showing any content in website page. We can use only one body tag for a web page.
For example:-
<!DOCTYPE html>
<html>
<head>
<title>Body Tag</title>
</head>
<body>
<h1>This is h1 tag</h1>
</body>
</html>
Output
This is h1 tag
Copyright ©2022 coderraj.com. All Rights Reserved.