CHITUS

<head>

Коротко/Briefly:

what is : The <head> element contains basic information about the document: metadata (such as window title or encoding), script references, and style sheets.

що таке : Елемент <head> містить основну інформацію про документ: метадані (наприклад, заголовок вікна або кодування), посилання на скрипти та таблиці стилів.

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

<!DOCTYPE html>
<html>
  <head>
    <title>Chitus</title>
    <link rel="shortcut icon" type="image/png" href="/icon.png">
  </head>
</html>

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

Inside the <head> container, you can place the following elements: <title>,<base>, <link>, <meta>, <script>, <style>.

Всередині контейнера <head> можна розмістити елементи: <title>,<base>, <link>, <meta>, <script>, <style>.