-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.php
More file actions
39 lines (32 loc) · 2.06 KB
/
contacts.php
File metadata and controls
39 lines (32 loc) · 2.06 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
<?php require_once('./includes/connect.php'); ?>
<!DOCTYPE HTML>
<html>
<?php require_once('./includes/header.php'); ?>
</header>
<div class="box-content contacts">
<h2 class="title">Контакты</h2>
<div class="contacts-left">
<p style="text-indent: 1rem; margin-bottom: 2rem">Мы работаем с понедельника по пятницу, с 10 до 19 часов. Без перерывов. Проезд на шаттле: заезд со стороны Солнечной системы на основную парковку Земля через пояс астеройдов (парковка платная — 100р. за 2 часа), проезд прямо мимо Солнца и Луны на Паркинг №2. неОфициальный магазин «Процессоры со всего Мира».</p>
<p style="font-weight: 600; margin-bottom: 2rem">Нужна помощь? Свяжитесь с нами!<br>
<a class="email" href="mailto:pochekuev@me.com" style="font-weight: 400"><i class="fas fa-envelope"></i>pochekuev@me.com</a></p>
<p style="font-weight: 600; margin-bottom: 2rem">Наш телефон для связи<br>
<a class="phone" href="tel:89994574862" style="font-weight: 400"><i class="fas fa-mobile"></i>8 (999) 457 48-62</a><br></p>
<p style="font-weight: 600; margin-bottom: 2rem">Мы в соц. сетях<br>
<i class="fab fa-vk"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-facebook-f"></i></p>
</div>
<div class="contacts-right">
<h4 style="font-weight: 600; margin-bottom: 1rem">Задайте свой вопрос!</h4>
<form action="" class="contacts__form">
<input type="text" placeholder="Имя">
<input type="text" placeholder="Телефон">
<input type="text" placeholder="yourmail@domain.com">
<textarea cols="50" rows="5"></textarea>
<button type="submit" class="btn btn-confirm contacts__btn">Отправить</button>
</form>
</div>
</div>
<?php require_once('./includes/footer.php') ?>
</body>
</html>