-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdice.html
62 lines (56 loc) · 1.87 KB
/
dice.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
57
58
59
60
61
62
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Pokemon D&D Resources - Damage Calculator</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="topSection">
<h1>Dice Roller</h1>
<div class="mainTools">
<div class="toolItem">
<a href="index.html">Pokemon Generator</a>
</div>
<div class="toolItem">
<a href="items.html">Item Generator</a>
</div>
<div class="toolItem">
<a href="dmg.html">Damage Calculator</a>
</div>
</div>
<hr />
<div class="secondaryTools">
<div class="toll Item">
<a href="dmg.html">On Hit Damage Calculator</a>
</div>
<div class="toolItem">
<a href="dmg2.html">Dual Type Damage Calculator</a>
</div><!--
<div class="toolItem">
<a href="status_condition.html">Status Condition Calculator</a>
</div>-->
<div class="toolItem">
<a href="dice.html">Dice Roller</a>
</div>
</div>
</div>
<div class="mainSection">
<div class="leftSection">
<h4>Roll an Any-Sided Dice!</h4>
<input type="number" id="anySidedDice" />
<button onclick="anySidedDiceRoll()">Roll!</button>
</div>
<div class="rightSection">
<div class="displayBox hide" id="dicePrintBox">
<h3 id="dicePrint"></h3>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>