This commit is contained in:
2023-06-03 23:49:12 +03:00
parent 834aef432e
commit 4a21130567
8 changed files with 93 additions and 80 deletions

View File

@ -107,22 +107,22 @@
```html
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Заголовок страницы</title>
</head>
<body>
<header class="main-header">
<!— Шапка сайта —>
</header>
<head>
<meta charset="utf-8">
<title>Заголовок страницы</title>
</head>
<body>
<header class="main-header">
<!— Шапка сайта —>
</header>
<main>
<!— Основное содержимое страницы —>
</main>
<main>
<!— Основное содержимое страницы —>
</main>
<footer class="main-footer">
<!— Подвал сайта —>
</footer>
</body>
<footer class="main-footer">
<!— Подвал сайта —>
</footer>
</body>
</html>
```