-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.09 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.09 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
<!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>Myntkastning</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<main>
<h1 class="header">Myntkastning lär oss om normalfördelning</h1>
<div class="controls">
<div>
<p>Myntkast per runda: <span id="roundLengthLabel"></span></p>
<input id="roundLengthInput" type="range" min="10" max="500" />
</div>
<div>
<p>Antal rundor: <span id="roundCountLabel"></span></p>
<input id="roundCountInput" type="range" min="1" max="100000" />
</div>
</div>
<div>
<canvas id="chart"></canvas>
<div style="text-align: center">Antal klave</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="index.js"></script>
</body>
</html>