-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab2-color_test.php
58 lines (50 loc) · 2.15 KB
/
Lab2-color_test.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ColorTest</title>
<link rel="stylesheet" href="./css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
include "menu.php";
?>
<header class="header">
<div class="header__wrapper">
<h1 class="header__title" style="color: #000000; border-bottom: 1px solid #000000;">
Color Test
</h1>
<div class="header__text">
Оценка сложных сенсомоторных реакций человека:
<p class="information" style="font-style: italic; font-size: 20px;">оценка скорости реакции на разные цвета (не менее 3-х цветов)</p>
<div class="section-0">
<p style="border-radius: 5px; padding: 0px 28px; background-color: blue;">A</p>
<p style="border-radius: 5px; padding: 0px 28px; background-color: yellow;">W</p>
<p style="border-radius: 5px; padding: 0px 28px; background-color: red;">D</p>
</div>
</div>
</div>
</header>
<div class="section">
<div class="container">
<div class="score" style="background: #FFF5EE;">
<div id="color-box"></div>
<div class="section-0">
</div>
<div class="section-1">
<button id="start" type="button">Start Game (S)</button>
<p id="result" style="color: #000;"></p>
</div>
<div class="section-2" style="padding: 10px 0px 10px 0px;">
<p style="color: #000;">Осталось примеров: <span id="tries">15</span></p>
</div>
</div>
</div>
</div>
</body>
<script src="./js/Lab2-color-test.js"></script>
<script src="./js/menu.js"></script>
</html>