-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (45 loc) · 2.43 KB
/
contact.html
File metadata and controls
46 lines (45 loc) · 2.43 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>CourseWork2</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="menu">
<h1><a href="index.html" target="_self" class="menu_text">Главная</a></h1>
<a href="styles.html" target="_self" class="menu_text">Стили танца<br></a>
<a href="persons.html" target="_self" class="menu_text">Известные личности<br></a>
<a href="studios.html" target="_self" class="menu_text">Танцевальные студии<br></a>
<a href="contact.html" target="_self" class="menu_text" id="this">Контакты</a>
</nav>
<main>
<p>Заполните форму для заявки на проведение урока танцев</p>
<form action="https://www.bing.com/search?" id="UserEnter" name="UserEnter" target="_blank">
<ul>
<li> <input name="q" value="search"> </li>
<li>Дата<input type="date" name="date_n" size=20 value="2023-11-14"></li>
<li>Количество уроков<input type="number" name="number_n" size="20" value="1"></li>
<li>Отметьте нужый вариант:
<input type="Radio" name="face" value="fiz" checked>Один человек
<input type="Radio" name="face" value="jur">Группа
</li>
<li>Какие уроки вам нужны:
<input type="Checkbox" name="invest" id = 'hh' value="PESTEL">Hip-hop
<input type="Checkbox" name="invest" value="fu">Frame Up
<input type="Checkbox" name="invest" value="hiH">High Heels
<input type="Checkbox" name="invest" value="contemp" checked>Contemporary
</li>
<li><input type="password" name="pass" size="20" value="0000"></li>
<input type="hidden" name="id" value='000000'>
<li>Примечания <input type="Text" name="add" size=100 value=" "></li>
<li><button class="okay">Заказать</button></li>
<li><button class="send">Отправить</button></li>
</ul>
</form>
<p>Вы заказали </p>
<p><span class="num"></span> анализ(-/а) <span class="inv"></span></p>
</main>
<script src="script_contact.js"></script>
</body>
</html>