Skip to content

Commit a9de6a5

Browse files
authored
Update index.html
1 parent fb44709 commit a9de6a5

File tree

1 file changed

+26
-9
lines changed

1 file changed

+26
-9
lines changed

index.html

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
<!DOCTYPE html>
22
<html lang="ru">
3-
<head>
4-
<meta charset="utf-8">
5-
<title>HTML Academy: Седона</title>
6-
</head>
7-
<body>
8-
9-
<p>Репозиторий создан для обучения на профессиональном онлайн‑курсе «<a href="https://htmlacademy.ru/intensive/htmlcss">HTML и CSS. Профессиональная вёрстка сайтов</a>».</p>
10-
<img src="#" alt="Описание картинки.">
11-
</body>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Главная страница</title>
7+
<link rel="stylesheet" href="styles/styles.css">
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Добро пожаловать на мой сайт</h1>
12+
<nav>
13+
<ul>
14+
<li><a href="index.html">Главная</a></li>
15+
<li><a href="about.html">О нас</a></li>
16+
<li><a href="contact.html">Контакты</a></li>
17+
</ul>
18+
</nav>
19+
</header>
20+
<main>
21+
<h2>Это ваша стартовая страница</h2>
22+
<p>Здесь вы можете разместить информацию о вашем проекте.</p>
23+
</main>
24+
<footer>
25+
<p>© 2023 Мой сайт</p>
26+
</footer>
27+
</body>
1228
</html>
29+
```

0 commit comments

Comments
 (0)