-
Notifications
You must be signed in to change notification settings - Fork 0
/
second.html
59 lines (57 loc) · 1.73 KB
/
second.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Game</title>
<link rel="stylesheet" href="style.css">
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Baloo+Bhaijaan+2&family=Recursive&display=swap"
rel="stylesheet">
</head>
<body>
<div class="container">
<div>
<h1 class="heading"></h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>Player 1</td>
<td>0</td>
</tr>
<tr>
<td>DeeDee</td>
<td>0</td>
</tr>
</tbody>
</table>
</div>
<div class="mid-container">
<p id="para">Player 1</p>
<img src="/images/dice1.png" alt="dice-image">
</div>
<div class="mid-container1">
<p>Dee Dee</p>
<img src="/images/dice1.png" alt="dice-image">
</div>
</div>
<div class="cont">
<button class="btn1" onclick="dotask1()">Shuffle</button>
<button class="btn2" onclick="dotask2()">End</button>
</div>
<div class="last">
<button class="btn3" onclick="dotask3()">Stop Music</button>
</div>
</body>
<script src="script1.js" charset="utf-8"></script>
<footer>
Copyright © www.onlinegames.com. All rights reserved!!
</footer>
</html>