-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
51 lines (51 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Biryani:wght@200&display=swap" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="css/custom.css" rel="stylesheet">
<script src="js/application.js"></script>
</head>
<body>
<div class="container-fluid my-5">
<h1 class="text-center my-5">10SecMath Game</h1>
<div class="row">
<h5 class="text-center" id="HighScore"></h5>
<h5 class="text-center" id="Score"></h5>
<div class ="container rounded my-5">
<h3 class="text-center mt-3" id="Timer">10</h3>
<h4 class="text-center">seconds left</h4>
<h1 class="text-center my-3" id="Question"></h1>
<div class="text-center mt-4 mb-3">
<input class="styleInput" id="userInput" type="number"></input>
</div>
</div>
</div>
<div class="text-center">
<h4>Number Range:</h4>
<h4 id="numberRange">10</h4>
<input id="number-limit" type="range" min="10" max="50" step="5" value ="10">
</div>
<div class="container mt-5" id="rules">
<ul class="text-justify mt-3">
<h4>Rules:</h4>
<li class="mt-1">You Have 10 seconds to play starting when you type anything in the input.</li>
<li class="mt-1">You Win + 1 Second for each answer answered correctly.</li>
<li class="mt-2">When you reach 0 seconds the game stop, to restart the game just input something again.</li>
<li class="mt-2">A Current Score for the points of the Current Game.</li>
<li class="mt-2">A Total Score for the High Score for the current session.</li>
<li class="mt-2">An option to range the limit number you want for the game</li>
</ul>
</div>
</div>
</body>
</html>