CHITUS

<body>

Коротко/Briefly:

what is : The <body> tag contains all the content that will appear on the page: text, images, tags, scripts, and so on. There should only be one <body>.

що таке : Тег <body> містить весь контент, який з'явиться на сторінці: текст, зображення, теги, скрипти тощо. Має бути лише один <body>.

Приклад коду/Code Example:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Chitus</title>
  </head>
  <body>
    <p>text</p>
  </body>
</html>

Як писати/How to write:

The <body> tag is placed immediately after the closing </head>.

Тег <body> розміщується відразу після закриття </head>.