-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1005 Bytes
/
index.html
File metadata and controls
39 lines (35 loc) · 1005 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script data-require="chart.js@*" data-semver="2.6.0" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<div>
<canvas width="500" height="400" id="chart"></canvas>
<div>
<div>
Enter how many points do you want to generate:
</br>
<input id="nr" type="number" value="1"/>
</br>
Generating numbers
<br/>
From:
<input id="min" type="number" value="1"/>
<br/>
To:
<input id="max" type="number" value="10"/>
</div>
</div>
</br>
<div>
<button id="start" class="btn btn-primary">Start</button>
<button id="clear" class="btn btn-primary">Clear</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>