what is : Tags from <h1> to <h6> are headings on the page. The number in the tag means the heading level in the hierarchy: from the most important <h1> to the most secondary <h6>. By default, <h1> is the largest heading, <h6> is the smallest.
що таке : Теги від <h1> до <h6> – заголовки на сторінці. Цифра в тезі означає рівень заголовка в ієрархії: від найголовнішого <h1> до самого другорядного <h6>. За умовчанням <h1> - найбільший заголовок, <h6> - найменший.
<!DOCTYPE html>
<html>
<head>
<title>Chitus</title>
</head>
<body>
<h1>Найважливіший заголовок/Most important title</h1>
<h2>Заголовок рівня/Level header 2</h2>
<h3>Заголовок рівня/Level header 3</h3>
<h4>Заголовок рівня/Level header 4</h4>
<h5>Заголовок рівня/Level header 5</h5>
<h6>Заголовок рівня/Level header 6</h6>
</body>
</html>
Headings <h1>...<h6> are always displayed on a new line. Space is added before and after the headings, which can be adjusted using CSS styles.
Заголовки <h1>...<h6> завжди відображаються з нового рядка. Перед заголовками та після них додається відстань, яку можна регулювати за допомогою CSS-стилів.