-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.41 KB
/
index.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
<meta charset="utf-8">
<link rel="stylesheet" href="style.css"></link>
<div class="main">
<div id="circle"></div>
<div id="message"></div>
<div id="on_start"><span>1</span>-я серия испытаний</div>
<div id="rules">
<h1>Описание</h1>
<p>В начале каждого задания будет появляться зелёный круг.</p>
<p>Ваша задача - как можно быстрее нажать на пробел,</p>
<p>когда круг изменит цвет и из зелёного станет красным. Удачи!</p>
<button id="start_test">Начать тест</button>
</div>
<form id="form">
<label for="name">ФИО:</label>
<input type="text" id="name" />
<br />
<label for="age">Возраст:</label>
<input type="number" min="0" id="age" />
<br />
<label for="sport_type">Тип спорта:</label>
<select id="sport_type">
<option value='option-1'>Snowboard</option>
<option value='option-2'>Chu-pong</option>
<option value='other'>Другое</option>
</select>
<br />
<div style="display: none;">
<label for="other_sport_type">Какой:</label>
<input type="text" id="other_sport_type" />
</div>
<br />
<button type="button" id="submit">Продолжить</button>
</form>
<div id="consultant"></div>
</div>
<script src="script.js"></script>