-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
87 lines (80 loc) · 3.25 KB
/
contacts.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Портфолио</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<nav class="nav">
<div class="container">
<div class="nav-row">
<a href="./index.html" class="logo">
<strong>Портфолио</strong>
</a>
<button class="dark-mode-btn">
<img src="./img/icons/theme/sun.svg" alt="Light mode" class="dark-mode-btn__icon">
<img src="./img/icons/theme/moon.svg" alt="Dark mode" class="dark-mode-btn__icon">
</button>
<ul class="nav-list">
<li class="nav-list__item">
<a href="./index.html" class="nav-list__link">Главная</a>
</li>
<li class="nav-list__item">
<a href="./projects.html" class="nav-list__link">Проекты</a>
</li>
<li class="nav-list__item">
<a href="./contacts.html" class="nav-list__link nav-list__link--active">Контакты</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="section">
<div class="container">
<h1 class="title-1">Контакты</h1>
<ul class="content-list">
<li class="content-list__item">
<h2 class="title-2">Локация</h2>
<p>Санкт-Петербруг</p>
</li>
<li class="content-list__item">
<h2 class="title-2">Telegram / WhatsApp</h2>
<p>
<a href="tel:+79816801061">+7 (981) 680-10-61</a>
</p>
</li>
<li class="content-list__item">
<h2 class="title-2">Email</h2>
<p>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</li>
</ul>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="footer__wrapper">
<ul class="social">
<li class="social__item">
<a href="https://vk.com/ideco" target="_blank"><img src="./img/icons/social/vk.svg" alt="Link VK"></a>
</li>
<li class="social__item">
<a href="tg://resolve?domain=n1k-deco" target="_blank"><img src="./img/icons/social/telegram.svg" alt="Link telegram"></a>
</li>
<li class="social__item">
<a href="https://github.com/n1k-deco" target="_blank"><img src="./img/icons/social/github.svg" alt="Link github"></a>
</li>
</ul>
<div class="copyright">
<p>© 2023</p>
</div>
</div>
</div>
</footer>
<script src="./js/index.js"></script>
</body>
</html>