-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 851 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
31
32
33
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Rock, Paper, Scissors</title>
</head>
<body>
<div class="playerChoices">
<button type="button" name="rock" class="choiceButton">Rock</button>
<button type="button" name="paper" class="choiceButton">Paper</button>
<button type="button" name="scissors" class="choiceButton">Scissors</button>
</div>
<div class="results">
<div>
<p class="currentChoicesDisplay"></p>
<p class="currentResultsDisplay"></p>
</div>
<div>
<h2>Player's score</h2>
<p class="playerScoreDisplay"></p>
</div>
<div>
<h2>Computer's score</h2>
<p class="computerScoreDisplay"></p>
</div>
</div>
<script src="./game.js" charset="utf-8"></script>
</body>
</html>