-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
55 lines (48 loc) · 2.25 KB
/
contacts.html
File metadata and controls
55 lines (48 loc) · 2.25 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="ru">
<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">
<link rel="stylesheet" href="./pages/contacts.css">
<link rel="icon" href="favicon.png" type="image/x-icon">
<title>КОНТАКТЫ ФИРМЫ</title>
</head>
<body class="page">
<header class="header">
<h1 class="header__title">
<a href="./index.html" class="header__title-link">Юридическая фирма "Эдвайзер"</a>
</h1>
<nav class="nav">
<a href="./index.html" class="nav__title">главная</a>
<a href="./about.html" class="nav__title">о фирме</a>
<a href="./news.html" class="nav__title">новости</a>
<a href="./analytics.html" class="nav__title">аналитика</a>
<a href="./service.html" class="nav__title">услуги</a>
<a href="./clients.html" class="nav__title">клиенты</a>
<a href="#" class="nav__title nav__title_active">контакты</a>
</nav>
</header>
<main class="content">
<section class="block block__map">
<iframe class="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1998.880078130827!2d30.418173145561536!3d59.93413206602385!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x46963113cc540535%3A0x6a30d2613c29c2d5!2z0JzQsNCz0L3QuNGC0L7Qs9C-0YDRgdC60LDRjyDRg9C7LiwgMyDQutC-0YDQv9GD0YEgMiDRgdGC0YDQvtC10L3QuNC1IDEsINCh0LDQvdC60YIt0J_QtdGC0LXRgNCx0YPRgNCzLCDQoNC-0YHRgdC40Y8sIDE5NTAyNw!5e0!3m2!1sru!2skz!4v1675827060265!5m2!1sru!2skz"
style="border:0;" allowfullscreen="" referrerpolicy="no-referrer-when-downgrade"></iframe>
<div class="adress">
<h2>Санкт-Петербург</h2>
<p>улица Магнитогорская, 3-2-1<br>
Санкт-Петербург, Россия, 195027</p>
<p>+7-921-942-36-97<br>
+7-952-206-67-78</p>
<p>adviser@bk.ru</p>
<br>
<h2>Ташкент</h2>
<p>+998-90-391-29-97</p>
</div>
</section>
</main>
<footer class="footer">
<p class="card__text card_theme_dark-grey">© 2023 Юридическая фирма «Эдвайзер»</p>
</footer>
</body>
</html>