-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (40 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rock Paper or Scissors</title>
<link rel="stylesheet" href="style.css">
<script src="javascript.js"></script>
</head>
<body>
<div class="container">
<div class="title">
<p>Rock Paper Scissors</p>
</div>
<div class="game">
<div id="roundCount">Pick Rock, Paper or Scissors from below to start the Game! There are five rounds before a winner is decided.</div>
<div>
<br>
</div>
<div id="playerDisplayScore"></div>
<div id="computerDisplayScore"></div>
<div>
<br>
</div>
<div>
<br>
</div>
<div id="inputs"></div>
<div>
<br>
</div>
<div id="results"></div>
<div class="picks">
<button id="rock_button" onclick="playGame('Rock')">🪨</button>
<button id="paper_button" onclick="playGame('Paper')">📰</button>
<button id="scissors_button" onclick="playGame('Scissors')">✂️</button>
</div>
</div>
</div>
</body>
</html>