Welcome ๐ŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


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


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>








Read more
On This Page