The <body> tag is an element that contains the content displayed on the browser.
All content such as text, images, videos, links, and other elements displayed on a webpage are within this tag.
Tag <body> is a child element of the <html> tag and is the only element in an HTML document.
Syntax of the <body> tag is as follows:
<!DOCTYPE html>
<html>
<head>
<title>Tรชn trang web</title>
</head>
<body>
<!-- Nแปi dung trang web -->
</body>
</html>