-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 967 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="style.css">
</head>
<body >
<p class="title">
Rock Paper Scissors
</p>
<button class="move-button" onclick="
playGame('rock');
">
<img class="move-icon" src="rock-emoji.png">
</button>
<button class="move-button" onclick="
playGame('paper')
" >
<img class="move-icon" src="paper-emoji.png">
</button>
<button class="move-button" onclick="
playGame('scissor');
"
>
<img class="move-icon" src="scissor-emoji.png">
</button>
<p class="js-result result"></p>
<p class="js-moves"></p>
<p class="js-score score"></p>
<button class="reset-score-button" onclick="
score.wins=0;
score.losses=0;
score.ties=0;
localStorage.removeItem('score');
updateScore();
">Reset Score</button>
<script src="index.js"></script>
</body>
</html>