forked from galaxsea/galaxsea-barbershop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
price.html
135 lines (133 loc) · 5.42 KB
/
price.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Барбершоп: Прайс-лист</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,cyrillic">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style-min.css">
</head>
<body class="inner-page">
<header class="main-header">
<div class="container clearfix">
<div class="logo-header">
<a href="index.html"><img src="img/barbershop-index/logo-header.png" width="111" height="24" alt="Барбершоп «Бородинский»"></a>
</div>
<nav class="main-navigation">
<ul>
<li>
<a href="#">Информация</a>
</li>
<li>
<a href="#">Новости</a>
</li>
<li>
<a class="active" href="price.html">Прайс-лист</a>
</li>
<li>
<a href="shop.html">Магазин</a>
</li>
<li>
<a href="#">Контакты</a>
</li>
</ul>
</nav>
<div class="user-block">
<a class="login" href="#">Вход</a>
</div>
</div>
</header>
<main class="container clearfix">
<div class="page-title">
<h1>Прайс-лист</h1>
</div>
<div class="breadcrumbs">
<ul>
<li>
<a href="index.html">Главная</a>
</li>
<li>
<span>Прайс-лист</span>
</li>
</ul>
</div>
<div class="page-big-title">
<b class="line">Истинно мужская классика</b>
</div>
<div class="service clearfix">
<section class="products">
<h3>Мы используем только лучшие средства:</h3>
<ul>
<li>Baxter of California</li>
<li>Mr Natty</li>
<li>Suavecito</li>
<li>Malin+Goetz</li>
</ul>
</section>
<section class="price-table">
<h3>Цены на услуги наших мастеров:</h3>
<table>
<tr>
<td>Стрижка</td>
<td>1500 р.</td>
</tr>
<tr>
<td>Стрижка бороды</td>
<td>500 р.</td>
</tr>
<tr>
<td>Накрутка усов</td>
<td>350 р.</td>
</tr>
</table>
</section>
</div>
<section class="about-us clearfix">
<h3>Несколько слов о нас:</h3>
<p class="about-us-left">Наша парикмахерская занимается исключительно мужскими стрижками.
Стрижка каждого клиента для нас - это уникальная и продуманная до мелочей работа.
Мы не работаем на количество, мы делаем качество.</p>
<p class="about-us-right">Наша мастерская расположена в центре города, поэтому сделать стильную стрижку
можно в любое время, даже в обеденный перерыв. Здесь вы можете погрузиться в удобную
для вас атмосферу, чувствовать себя комфортно и свободно!</p>
</section>
</main>
<footer class="main-footer">
<div class="container clearfix">
<section class="footer-contacts">
Барбершоп «Бородинский»<br>
Адрес: г. Санкт-Петербург, Б. Конюшенная, д. 19/8<br>
<a href="#">Как нас найти?</a><br>
Телефон: +7 (812) 666-02-66
</section>
<section class="footer-social">
<p>Давайте дружить!</p>
<a class="social-btn social-btn-vk" href="#">Вконтакте</a>
<a class="social-btn social-btn-fb" href="#">Фейсбук</a>
<a class="social-btn social-btn-inst" href="#">Инстаграм</a>
</section>
<section class="footer-copyright">
<p>Разработано:</p>
<a class="btn" href="https://htmlacademy.ru">HTML Academy</a>
</section>
</div>
</footer>
<div class="modal-content">
<button class="modal-content-close" type="button" title="Закрыть">Закрыть</button>
<h2 class="modal-content-title">Личный кабинет</h2>
<p>Введите свой логин и пароль.</p>
<form class="login-form" action="https://echo.htmlacademy.ru" method="post">
<input class="icon-user" type="text" name="login" placeholder="Логин">
<input class="icon-password" type="password" name="password" placeholder="Пароль">
<label class="login-checkbox">
<input type="checkbox" name="remember">
<span class="checkbox-indicator"></span>
Запомните меня
</label>
<a class="restore" href="#">Я забыл пароль!</a>
<button class="btn" type="submit">Войти</button>
</form>
</div>
<script src="js/scripts-min.js"></script>
</body>
</html>