-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (30 loc) · 939 Bytes
/
index.html
File metadata and controls
executable file
·30 lines (30 loc) · 939 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Dosis&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<label>Pick a Dice:</label>
<select id="diceFace">
<option value=4>D4</option>
<option value=6>D6</option>
<option value=8>D8</option>
<option value=10>D10</option>
<option value=12>D12</option>
<option value="20">D20</option>
<option value="100">D100</option>
</select>
<div class="dices">
<h3 id="diceOne"></h3>
<h3 id="diceTwo"></h3>
</div>
<button id="toDraw">DRAW</button>
</div>
<script src="app.js"></script>
</body>
</html>