-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooking.html
More file actions
82 lines (80 loc) · 3.54 KB
/
booking.html
File metadata and controls
82 lines (80 loc) · 3.54 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
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
<!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">
<link rel="stylesheet" href="style/style.css">
<title>Сайт Турист-PRO</title>
</head>
<body>
<!-- Шапка сайта -->
<header>
<div class="wrapper">
<div class="content">
<div class="logo">
<a href="index.html"><img src="media/image/logo.png" alt="Логотип компании"></a>
<nav>
<a href="index.html#promos">Акции</a>
<a href="index.html#search">Поиск</a>
<a href="booking.html">Управление бронированием</a>
</nav>
</div>
</div>
</div>
</header>
<!-- <Бронирование> -->
<section class="booking" id="booking">
<div class="wrapper">
<h1>Информация о бронировании</h1>
<div class="content">
<div class="info">
<h2>Информация о маршруте</h2>
<p>Регион маршрута: Якутия</p>
<p>Название маршрута: Второй</p>
<p>Выбранные зоны:
<ul>
<li>Первая</li>
<li>Вторая</li>
<li>Третья</li>
</ul>
</p>
<p>Предполагаемые даты: 11.11.21-20.11.21</p>
<p>Количество человек: 5</p>
<p>Стоимость: 25.00 руб</p>
</div>
<div class="dop">
<h2>Выберите дополнительные услуги</h2>
<div class="dop_check">
<p><input type="checkbox" name="help">Услуги проводника</p>
<p><input type="checkbox" name="rent">Аренда оборудования</p>
<p><input type="checkbox" name="foto">Фото/видео съемка</p>
<p><input type="checkbox" name="ins">Страховка</p>
</div>
</div>
<div class="other">
<textarea placeholder="Оставьте дополнительные коммментарии к заказу"></textarea><input type="email" placeholder="Введите свой email">
<p>Итоговая стоимость заказа: 35.000 руб</p>
<button>Оформить бронирование</button>
</div>
</div>
</div>
</section>
<!-- Подвал сайта -->
<footer>
<div class="wrapper">
<div class="content">
<h2>8 (800) 555-33-10</h2>
<nav><a href="http://xxxxxx-m1.wsr.ru">Home</a>
<a href="http://xxxxxx-m1.wsr.ru/login">Login</a>
<a href="http://xxxxxx-m1.wsr.ru/signup">Sign up</a>
<a href="http://xxxxxx-m1.wsr.ru/contact">Contact</a>
<a href="http://xxxxxx-m1.wsr.ru/news">News</a>
<a href="http://xxxxxx-m1.wsr.ru/return">Return</a>
<a href="http://xxxxxx-m1.wsr.ru/feedback">Feedback</a>
</nav>
</div>
</div>
</footer>
</body>
</html>