-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRockPaperScissorsGame.html
29 lines (28 loc) · 1.01 KB
/
RockPaperScissorsGame.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors Game</title>
<link rel="styleSheet" href="./RockPaperScissorsGame.css">
</head>
<body>
<div class="RockPaperScissorsGame">
<h1 class="gameName">Rock Paper Scissors Game</h1>
<p class="Choose">Choose your move:</p>
<div class="move">
<button class="rock">👊</button>
<button class="paper">🖐</button>
<button class="scissors">✌ </button>
</div>
<span class="result">come to start game!</span>
<div class="chooser">
yourChooser:<span class="user"> Not Play</span>ComputerChooser: <span class="computer">Not Play</span>
</div>
<div class="score">
your score:<span class="yourScore">0</span> computer score:<span class="computerScore">0</span>
</div>
</div>
<script src="./RockPaperScissorsGame.js"></script>
</body>
</html>