-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (27 loc) · 920 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
34
<!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 CHALLANGE GAME</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="result">LET'S PLAY THE GAME</h1>
<table>
<tr>
<td class="game name">Player-1</td>
<td class="game name">player-2 </td>
</tr>
<tr>
<td class="game" id="dice1"><img src="dice1.png"></td>
<td class="game" id="dice2"><img src="dice1.png"></td>
</tr>
</table>
<input class="btn" type="button" value="Play" id="playBtn" style="margin-left: 30%;" onclick="play()">
<input class="btn" type="button" value="Edit Name" onclick="edit()">
<!--add external javascript file here-->
<script src="app.js"></script>
</body>
</html>