what is : The <footer> tag used to create the bottom part of the page (footer, section, block, "basement")
що таке : Тег <footer> використовується для створення нижньої частини сторінки(нижній колонтитул,розділ,блок,«підвал»)
<!DOCTYPE html>
<html>
<head>
<title>Chitus</title>
</head>
<body>
<header>
<h1>Chitus - Learn Web Development</h1>
</header>
<main>
<p>Welcome to Chitus! We offer a wide range of web development tutorials and resources.</p>
</main>
<footer>
<p>© 2023 Chitus. All rights reserved.</p>
</footer>
</body>
</html>
The <footer> tag usually contains: contact information, copyright, links to social networks and other additional elements. It is usually placed after the main content of the page (for example, after the <main> tag).
Тег <footer> як правило містить: контактна інформація, авторські права, посилання на соціальні мережі та інші додаткові елементи. Зазвичай він розташовується після основного контенту сторінки (наприклад, після тега <main>).