-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
43 lines (35 loc) · 887 Bytes
/
feedback.html
File metadata and controls
43 lines (35 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Обратная связь</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Обратная связь</h1>
</header>
<nav>
<a href="index.html">Главная</a>
<a href="history.html">История</a>
<a href="exhibits.html">Экспонаты</a>
<a href="media.html">Медиаархив</a>
<a href="feedback.html">Обратная связь</a>
<a href="about.html">Об авторе</a>
</nav>
<main>
<form class="feedback-form">
<label>Имя:</label>
<input type="text">
<label>Email:</label>
<input type="email">
<label>Сообщение:</label>
<textarea rows="5"></textarea>
<button>Отправить</button>
</form>
</main>
<footer>
<p>© 2025</p>
</footer>
</body>
</html>