-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (38 loc) · 1.33 KB
/
index.html
File metadata and controls
54 lines (38 loc) · 1.33 KB
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
53
54
<!DOCTYPE html>
<html>
<head>
<title>Rock Papers Scissors</title>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="RCP.css">
</head>
<body style="font-family: Roboto;">
<p class="title">Rock Papers Scissors</p>
<button class="move-button rock">
<img class="move-image" src="rock-emoji.png" alt="Rock">
</button>
<button
class="move-button paper">
<img class="move-image" src="paper-emoji.png" alt="paper">
</button>
<button
class="move-button scissors">
<img class="move-image" src="scissors-emoji.png" alt="Scissors">
</button>
<p class="js-results">Let's Play</p>
<p class="js-moves"></p>
<p class="js-score"></p>
<button
class="reset reset-ask">
Reset Score
</button>
<button class="auto-play-button"
>Auto Play</button>
<div class="confirmation-box" id="confirmationBox">
<p>Do you really want to reset the score?</p>
<button class="confirm-yes">Yes</button>
<button class="confirm-no">No</button>
</div>
<script src="RCP.js"></script>
</body>
</html>