-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.17 KB
/
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
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="animals.css">
<title>Dice and animals</title>
</head>
<body>
<div>
<div class="container">
<div class="lane"><span class="animal" id="lion"></span></div>
<div class="lane"><span class="animal" id="crocodile"></span></div>
<div class="lane"><span class="animal" id="elephant"></span></div>
<div id="dies">
<span id="die1"></span>
<span id="die2"></span>
</div>
<div class="controller">
<button id="roll-button" onclick="draw(core.rollDice())">würfeln</button>
<button id="replay-button" onclick="refresh()">nochmal!</button>
</div>
</div>
<div class="footer">Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
</div>
<script src="js/script.js"></script>
<script src="js/core.js"></script>
<script src="js/dict.js"></script>
</body>
</html>