-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (32 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOM - Day 5 - TaskProject 4 - DiceGame</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="box">
<p> <b>Let's Play Dice</b></p>
<h2 class="player-turn" id="playerturn">Player-1 has to Play</h2>
<div class="players">
<div class="player-1">
<h3>Player-1</h3>
<span id="span0" class="active"> </span> <br>
<button type="button" id="btn0" class="active">Roll Now</button>
</div>
<div class="image" >
<img src="./images/2.PNG" alt="Image2 Here" id="rollimage">
</div>
<div class="player-2">
<h3>Player-2</h3>
<span id="span1"> </span> <br>
<button type="button" id="btn1" class="button ">Roll Now</button>
</div>
</div>
<button type="reset" class="button" id="reset">Reset</button>
</div>
<script src="./script.js"></script>
</body>
</html>