-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 852 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
<!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="styles.css">
</head>
<body>
<div class="game-container">
<h1>Rock Paper Scissors</h1>
<div class="choices">
<button class="choice" id="rock">✊</button>
<button class="choice" id="paper">✋</button>
<button class="choice" id="scissors">✌</button>
</div>
<div class="result">
<h2 id="result-text">Make your move!</h2>
<div class="score">
<p>Your Score: <span id="player-score">0</span></p>
<p>Computer Score: <span id="computer-score">0</span></p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>