-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstone.html
52 lines (37 loc) · 1.1 KB
/
stone.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stone Paper Scissors Game</title>
</head>
<link rel="stylesheet" href="paper.css">
<body>
<h1>Stone Paper Scissors</h1>
<div class="choices">
<div class="choice" , id="stone">
<img src="C:\Users\hp\Music\Navneeth\Stone Paper Scissors game\images\rock.png" alt="stone">
</div>
<div class="choice" , id="paper">
<img src="C:\Users\hp\Music\Navneeth\Stone Paper Scissors game\images\paper.png" alt="paper">
</div>
<div class="choice" , id="scissors">
<img src="C:\Users\hp\Music\Navneeth\Stone Paper Scissors game\images\scissors.png" alt="scissors">
</div>
</div>
<div class="scoreBoard">
<div class="userScore">
<p id="My-point">0</p>
<p id="self">You</p>
</div>
<div class="compScore">
<p id="comp-point">0</p>
<p id="comp">Comp</p>
</div>
</div>
<div class="result">
<p id="winner">Pick Your Move</p>
</div>
<script src="scissors.js"></script>
</body>
</html>