-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (64 loc) · 2.52 KB
/
index.html
File metadata and controls
69 lines (64 loc) · 2.52 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
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
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibe Dice Roller</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>🎲 Vibe Dice Roller</h1>
</header>
<div class="dice-controls">
<h2>Select Your Dice</h2>
<div class="dice-types">
<div class="dice-type">
<label for="d2">d2</label>
<input type="number" id="d2" min="0" max="20" value="0">
</div>
<div class="dice-type">
<label for="d4">d4</label>
<input type="number" id="d4" min="0" max="20" value="0">
</div>
<div class="dice-type">
<label for="d6">d6</label>
<input type="number" id="d6" min="0" max="20" value="1">
</div>
<div class="dice-type">
<label for="d8">d8</label>
<input type="number" id="d8" min="0" max="20" value="0">
</div>
<div class="dice-type">
<label for="d10">d10</label>
<input type="number" id="d10" min="0" max="20" value="0">
</div>
<div class="dice-type">
<label for="d12">d12</label>
<input type="number" id="d12" min="0" max="20" value="0">
</div>
<div class="dice-type">
<label for="d20">d20</label>
<input type="number" id="d20" min="0" max="20" value="0">
</div>
<div class="dice-type">
<label for="d100">d100</label>
<input type="number" id="d100" min="0" max="20" value="0">
</div>
</div>
<button id="rollButton" class="roll-button">Roll Dice!</button>
<button id="clearButton" class="clear-button">Clear All</button>
</div>
<div class="results-section">
<div class="total-section">
<h3>Total: <span id="totalResult">0</span></h3>
</div>
<div class="dice-results" id="diceResults">
<!-- Dice results will be displayed here -->
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>