-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 1.73 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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suraj Ray Games</title>
<link rel="stylesheet" href="game.css">
</head>
<body>
<!--Message-->
<h1> Play Rock, Paper & Scissors !</h1>
<!--User's choice-->
<div id="all">
<div class="user move">
<div id="Rock" class="sign"><img src="Rock.png" alt="This is Rock sign" class="hand usr"></div>
<div id="Paper" class="sign"> <img src="Paper.png" alt="This is Paper sign" class="hand usr"></div>
<div id="Scissors" class="sign"><img src="Scissors.png" alt="This is Scissors sign" class="hand usr"></div>
<h2 id="msg">Choose your Move
</h2>
</div>
<!--Computer's choice-->
<div class="computer move">
<div class="Rock"><img src="Rock.png" alt="This is Rock sign" id="cmpRock" class="hand"></div>
<div class="Paper"> <img src="Paper.png" alt="This is Paper sign" id="cmpPaper" class="hand"></div>
<div class="Scissors"><img src="Scissors.png" alt="This is Scissors sign" id="cmpScissors" class="hand">
</div>
<h2 id="compMsg">Computer's Move
</h2>
</div>
</div>
<!--Score Board-->
<h3>
<div class="score">
<div class="board user">Your Score</div>
<div class="board count" id="user">0</div>
</div>
<div class="number">
<div class="board computer">Computer's Score</div>
<div class="board count" id="computer">0</div>
</div>
</h3>
<script src="game.js"></script>
</body>
</html>