-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculate_price.html
110 lines (110 loc) · 5.3 KB
/
calculate_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1300, initial-scale=1.0">
<link rel="stylesheet" href="css/calculate_price.css">
<link rel="shortcut icon" href="icons/Logo.svg" type="image/x-icon">
<script src="js/index.js" defer></script>
<title>ДомСтрой</title>
</head>
<body>
<main class="wrapper">
<section class="wrapper__item">
<form class="calculate" action="index.html">
<div class="first-column__item">
<h1 class="item__title">Рассчитать стоимость</h1>
<div class="item__wish">
<h1 class="title">Что желаете построить? *</h1>
<select name="select-category" id="build" class="select__building" required>
<option value="1">Дом</option>
<option value="2">Бытовка</option>
<option value="3">Беседка</option>
<option value="4">Баня</option>
</select>
</div>
<div class="item__size">
<h1 class="title">
Размер объекта*
</h1>
<h1><input type="number" min="1"> x <input type="number" min="1"> м </h1>
</div>
<div class="item__all">
<h1 class="title">
Название или код товара
</h1>
<input class="choice" type="text" placeholder="Введите название или код товара" required>
</div>
<div class="item__all">
<h1 class="title">
Фундамент *
</h1>
<select name="select-choice" id="choice" class="choice" required>
<option value="1">Есть</option>
<option value="2">Нет</option>
</select>
</div>
<div class="item__all">
<h1 class="title">
Утепление стен *
</h1>
<select name="select-heat" id="heat" class="choice" required>
<option value="1">Без утепления</option>
<option value="2">С утеплением</option>
</select>
</div>
<div class="item__all">
<h1 class="title">Этажность *</h1>
<input class="choice" type="number" placeholder="Количество этажей" max="10" min="1" required>
</div>
</div>
<div class="first-column__item">
<div class="item__all">
<h1 class="title">
Адрес строительства *
</h1>
<input class="choice" type="text" placeholder="Введите адрес строительства" required>
</div>
<div class="item__img">
<h1 class="title">
Если у Вас есть проект/чертеж, загрузите его
</h1>
<label for="file">
<div class="dow_in">
<p>+ Выбрать файл'</p>
<input type="file">
</div>
</label>
</div>
<div class="item__all">
<h1 class="title">
Имя*
</h1>
<input class="choice" type="text" placeholder="Ваше имя" required>
</div>
<div class="item__all">
<h1 class="title">
Телефон*
</h1>
<input class="choice" type="tel" placeholder="+996 (900) 000-00-00" required>
</div>
<div class="item__all">
<h1 class="title">
Электронная почта
</h1>
<input class="choice" type="email" placeholder="Email" required>
</div>
<div class="item__all">
<h1 class="title">
Оставить комментарий
</h1>
<input class="choice" type="text" placeholder="Введите комментарий" required>
</div>
<a href="index.html"><input type="submit" value="Отправить"></a>
</div>
</form>
</section>
</main>
</body>
</html>