-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rock-Paper-Scissors</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="player-section">
<button id="rock" class="button" onclick="playRound('rock')">Rock</button>
<button id="paper" class="button" onclick="playRound('paper')">Paper</button>
<button id="scissors" class="button" onclick="playRound('scissors')">Scissors</button>
</div>
<div class="results-section">
<div id="result-text"></div>
<div class="scoreboard">
<p>Results</p>
<div class="scores">
<span id="player-score">0</span>
<span id="separator">:</span>
<span id="computer-score">0</span>
</div>
</div>
</div>
</div>
<script src="javascript.js" async defer></script>
</body>
</html>