-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 897 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
<!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</title>
<link rel="stylesheet" href="./styles.css" />
<script defer src="./dist/app.js"></script>
</head>
<body>
<div class="container">
<div id="choices">
<button id="rock">Rock</button>
<button id="paper">Paper</button>
<button id="scissors">Scissors</button>
</div>
<div id="result-container">
<h1>Rock Paper Scissors</h1>
<p id="result">First to 5 points wins!</p>
<p>Player score: <span id="playerScore">0</span></p>
<p>Computer score: <span id="computerScore">0</span></p>
<p>Draws: <span id="draws">0</span></p>
<button id="replay" class="button">Replay</button>
</div>
</div>
</body>
</html>