-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
41 lines (37 loc) · 1.29 KB
/
contacts.html
File metadata and controls
41 lines (37 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Никита Косарев | Контакты</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="logo">Никита Косарев</div>
<button id="menu-btn">☰</button>
<nav id="menu">
<a href="index.html">Главная</a>
<a href="about.html">Обо мне</a>
<a href="skills.html">Навыки</a>
<a href="contacts.html">Контакты</a>
<a href="conclusion.html">Заключение</a>
</nav>
</header>
<main>
<h2>Связаться можно со мной здесь:</h2>
<ul class="contact-list">
<li class="contact-item">
<a href="https://t.me/qreers" target="_blank">Telegram: @qreers</a>
</li>
<li class="contact-item">
<a href="https://vk.com/nkosarevs" target="_blank">VK: vk.com/nkosarevs</a>
</li>
<li class="contact-item">Телефон: +7 900 080-XX-XX</li>
<li class="contact-item">Email: nikitakosarev1@list.ru</li>
</ul>
</main>
<footer>© 2025 Никита Косарев</footer>
</body>
</html>