HTML Body Tag
Body Tag!
Explanation
BODY
Example Code
<html>
<body>
</body>
</html>
It is like the body of a human.
BODY tag should lie inside "html" tag.
Any thing we type inside the body tag will be displayed in the browser page.
e.g: Combining all the tags learned so far
<html>
<head>
<title> My Page
</title>
</head>
<body>
This is my first page </body>
</html>