-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
52 lines (41 loc) · 1.51 KB
/
Copy pathform.html
File metadata and controls
52 lines (41 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Form tusk</title>
</head>
<body>
<p>Привет, я риелтор! Свяжитесь со мной по интересующему вас вопросу</p>
<p>
Тип объекта:
<input type="radio" id="Typeofhousing1" name="info" value="Дом" />
<label for="Typeofhousing1">Дом</label>
<input type="radio" id="Typeofhousing2" name="info" value="Квартира" />
<label for="Typeofhousing2">Квартира</label>
<input
type="radio"
id="Typeofhousing3"
name="info"
value="Нежилое помещение"
/>
<label for="Typeofhousing3">Нежилое помещение</label>
<input type="radio" id="Typeofhousing4" name="info" value="Комната" />
<label for="Typeofhousing4">Комната</label>
</p>
<form>
<label for="email">Почта</label>
<input type="email" id="email" , placeholder="(Введите почту тут)" />
<br />
<br />
<label for="name">Имя:</label>
<input type="text" id="name" , placeholder="(Введите ваше имя тут)" />
<br />
<br />
<label for="data">Дата для встречи</label>
<input type="date" id="data" name="data" />
<br />
<br />
<input type="submit" value="Отправить заявку" />
</form>
</body>
</html>