-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
74 lines (65 loc) · 2.48 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Brain Train</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="icon"
href="./css/brain.svg">
</head>
<body>
<form class="math-game">
<div class="previous-results"></div>
<div class="question">
<input class="answers" type="number" step="0.01">
<div class="operator"></div>
<input class="answers" type="number" step="0.01">
<div>=</div>
<input class="result" type="number" value="" disabled>
<input type="submit" value="">
</div>
<div class="ui"><span class="ui-answer"></span><span class="last-answer"></span></div>
<div class="score">Score<span>0</span></div>
<div class="time">Time<span class="timer">30</span></div>
</form>
<form class="modal">
<div class="title"><span>Welcome to</span><h1>Brain Train</h1></div>
<div class="select">select difficulty:</div>
<div class="buttons">
<button class="e">Easy</button>
<button class="m">Medium</button>
<button class="h">Hard</button>
<button class="i">🔥Impossible🔥</button>
</div>
<div class="help">?</div>
</form>
<div class="instructions hide">
<div class="instructions-card">
<div class="easy">
<div class="icon">e</div>
<div>Questions with only <strong>Addition</strong> and <strong>Subtraction</strong> operators and <strong>One-Digit</strong> numbers will be displayed.</div>
</div>
<div class="medium">
<div class="icon">m</div>
<div>Questions with all <strong>Arithmetic Operators</strong> and <strong>One-Digit</strong> numbers will be displayed.</div>
</div>
<div class="hard">
<div class="icon">h</div>
<div>Same rules as <strong>Medium</strong> but the correct answer does not have a <strong>Range Limit</strong> (even negative numbers can be the answer).</div>
</div>
<div class="impossible">
<div class="icon">i</div>
<div>Same rules as <strong>Hard</strong> but with <strong>Two-Digit</strong> number questions.</div>
</div>
<span class="exit-instructions">X</span>
</div>
</div>
<a href="https://www.mitri-dvp.com/" class="powered-by">
<img src="./css/icon.svg" alt="mitri-dvp-icon" srcset="">
<p>mitri.dvp</p>
</a>
<script src="./js/script.js"></script>
</body>
</html>