-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.15 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
<!DOCTYPE html>
<html lang="da">
<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>Lær tabellerne</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<main>
<div class="mathContainer">
<div id="equationDisplay">
<!-- The calculation will be displayed here -->
</div>
<div class="userInputContainer">
<div class="userInput">
<input placeholder="Skriv dit svar" autofocus autocomplete="off" id="userAnwserInput">
<button id="submitUserInputBtn">Svar</button>
</div>
</div>
<div id="answerContainer" style="visibility: hidden;">
<p id="answerDisplay">
<!-- Answer will be displayed here -->
</p>
<button id="nextEquBtn">OK</button>
</div>
</div>
<div class="sliderContainer">
<div class="slidecontainer">
<div class="sliderRangeDisplay">
<span id="sliderMin">
2
</span>
<span id="sliderValue">
<!-- User selected value displayed here -->
<input type="text" id="sliderValueInput" value="" maxlength="" placeholder="10">
</span>
<span id="sliderMax">
100
</span>
</div>
<div>
<input type="range" min="" max="" value="" class="slider" id="equRange">
</div>
<div class="sliderInfo">
Vælg de tabeller du vil øve.
</div>
</div>
</div>
</main>
</body>
<script src="./js/app.js"></script>
</html>