-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 908 Bytes
/
index.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/dice.css">
<script src="lib/Rx.min.js"></script>
</head>
<body>
<header class="container">
<div class="flex-item">
<label>Players:</label>
<input type="number" id="input-players" value="4">
</div>
<div class="flex-item">
<label>Dices:</label>
<input type="number" id="input-dices" value="2">
</div>
<div class="flex-item">
<button id="button-play">
</button>
</div>
</header>
<main class="container">
</main>
<script src="js/index.js"></script>
<script src="js/player.js"></script>
<script src="js/dice.js"></script>
<script src="js/utils.js"></script>
<script src="js/dice-positions.js"></script>
</body>
</html>