CHITUS

<title>

Коротко/Briefly:

what is : The <title> tag is the title or title of the document, and will only be visible in the browser's title bar or page tab. From the name of the page <title> the user learns what is on it. If he wants to add the page to his favorites, the browser will suggest <title> as the title of the bookmark.

що таке : Тег <title> це назва або заголовок документа, буде видно лише у рядку заголовка браузера або на вкладці сторінки. З назви сторінки <title> користувач дізнається, що вона знаходиться. Якщо він захоче додати сторінку до обраного, то браузер запропонує <title> як назву закладки.

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

<!DOCTYPE html>
<html>
  <head>
    <title>Chitus</title>
  </head>
</html>

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

The <title> tag is written in the <head> container and may contain the title of the page.

Тег <title> прописується в контейнері <head> і може містити назву сторінки.