-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 879 Bytes
/
index.html
File metadata and controls
33 lines (28 loc) · 879 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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>4 face dice probability</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<div class="intro">
<h2>4 Face Dice probability distribution representation.</h2>
<p>
Positive Y = 1 <br />
Negative Y = 2 <br />
Negative X = 3 <br />
Positive X = 4 <br />
</p>
<input type="button" class="reload" value="Refresh Page" onClick="location.href=location.href"><br />
<i>Press to generate new random values</i>
</div>
<div id="d-3">
<div id="chart">
</div>
</div>
</div>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="script.js"></script>
</body>
</html>