-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.32 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
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title> Dice Game</title>
<script src="diceFun.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="diceFun.js"></script>
<body>
<h1 id="myheading" >Html Dice Game</h1>
<a href="#"><img src="images/play.png" id="play" alt=""/></a>
<a href="#"><img src="images/pause.png" id="pause" alt=""/></a>
<a href="#"><img src="images/prev.png" id="prev" alt=""/></a>
<span id="duration"></span>
<a href="#"><img src="images/ff.png" id="next" alt=""/></a>
<div id="volumeBox">
Volume: <a href="#"><img src="images/mute.png" id="mute" alt=""/></a><input id="volume" type="range" min="0" max="10" value="5" />
</div>
</div>
</section>
<section id="list">
<ul>
<li><a href="#">Song 1</a></li>
<li><a href="#">Song 2</a></li>
<li><a href="#">Song 3</a></li>
</ul>
</section>
<p class="p">random Generator</p>
<div class="dice" >
<input type="text" readonly size="40" class = "display" id="d0">
<input type="text" readonly size="40" class = "display" id="d1">
<hr>
<input type="text" readonly size="12" class= "displayRes" id="d2">
<hr>
<input type="text" readonly size="12" class= "displayRes" id="d3">
<hr>
<input type="button" class="button button2"
value="Click!" onclick='diceroll()'>
</div>
</span>
</body>
</html>