-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
101 lines (83 loc) · 3.57 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="ru">
<head>
<link rel="stylesheet" href="style.css">
<title>Контакты</title>
</head>
<body>
<section class="sub-header">
<nav>
<a href="#"><img src="images/logo.png" alt=""></a>
<div class="nav-link" id="navLinks">
<ul>
<li><a href="index.html">Главная</a></li>
<li><a href="news.html">Новости</a></li>
<li><a href="about.html">О Школе</a></li>
<li><a href="contacts.html">Контакты</a></li>
</ul>
</div>
</nav>
<h1>Контакты</h1>
</section>
<section class="location">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5804.689624950536!2d77.24871335113636!3d43.3279731810316!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x38839eec02d7c957%3A0x283503e138508d98!2z0KjQutC-0LvQsC3Qu9C40YbQtdC5IOKEliA0!5e0!3m2!1sru!2skz!4v1651225055559!5m2!1sru!2skz" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<section class="contact-us">
<div class="row">
<div class="contact-col">
<div>
<i class='bx bxs-home'></i>
<span>
<h5>Ул. Шевцова 8а</h5>
<p>г. Талгар, Алматинская область, Казахстан</p>
</span>
</div>
<div>
<i class='bx bxs-phone'></i>
<span>
<h5>88005553535</h5>
<p>с 10 до 18, Пн-Пт</p>
</span>
</div>
<div>
<i class='bx bxs-envelope'></i>
<span>
<h5>school4talgar@gmail.com</h5>
<p>Электронная почта нашей школы </p>
</span>
</div>
</div>
<div class="contact-col">
<form action="https://www.youtube.com/watch?v=dQw4w9WgXcQ">
<input type="text" name="name" placeholder="Ваше Имя" required>
<input type="email" name="email" placeholder="Ваш Электронный Адрес" required>
<textarea rows="8" name="message" placeholder="Ваше Сообщение"></textarea>
<button class="hero-btn red-btn"> Отправить Письмо</button>
</form>
</div>
</div>
</section>
<section class="footer">
<h4></h4>
<p></p>
<div class="icon">
<a href="https://www.instagram.com/shkola_4_talgar/"><i class='bx bxl-instagram'></i></a>
<a href=# onclick="t()"><i class='bx bxl-whatsapp'></i></a>
<a href="https://t.me/+gYjI_z23AGI1ZWQy"><i class='bx bxl-telegram'></i></a>
</div>
<p>Сделано Учениками 10"Б" Класса.</p>
</section>
<script>
function t() {
alert("Пока что в разработке...");
}
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>