-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Rock Paper Scissors</h1>
<div id="options">
<button class="img-button" onclick="cal('rock')"><img src="images/rock-emoji.png" alt="Rock"></button>
<button class="img-button" onclick="cal('paper')"><img src="images/paper-emoji.png" alt="Paper"></button>
<button class="img-button" onclick="cal('scissors')"><img src="images/scissors-emoji.png" alt="Scissor"></button>
</div>
<div><p class="result"></p></div>
<div id="compare">
</div>
<div id="stats">
<p>Wins: <span id="wins">0</span></p>
<p>Losses: <span id="losses">0</span></p>
<p>Ties: <span id="ties">0</span></p>
</div>
<button id="reset" onclick="reset()">Reset Score</button>
<script src="script.js"></script>
</body>
</html>