what is : The <header> tag used to create the top part of the page. ("cap", "hat" upper container, block)
що таке : Тег <header> використовується для створення верхньої частини сторінки.(«шапка»,«капелюх» верхній контейнер,блок)
<!DOCTYPE html>
<html>
<head>
<title>Chitus</title>
</head>
<body>
<header>
<h1>Welcome to Chitus!</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Tutorials</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<p>Chitus is a website that offers web development tutorials and resources.</p>
</main>
<footer>
<p>© 2023 Chitus. All rights reserved.</p>
</footer>
</body>
</html>
The <header> tag Titles, logos, and the main menu are often placed. Can have multiple <header> tags, but cannot be placed in a <footer>, <address> or another <header>
Тег <header> Часто розміщуються заголовки, логотипи, головне меню. Може бути кілька тегів <header>, але його не можна розмістити в <footer>, <address> або іншому <header>