-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 823 Bytes
/
index.html
File metadata and controls
36 lines (35 loc) · 823 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Rock, Paper, Scissors</title>
</head>
<body>
<h1>Rock, Paper, Scissors</h1>
<h2>Press r, p, or s to start playing!</h2>
<div>
<span>You Chose: </span>
<span id="userInput"></span>
</div><br />
<div>
<span>The Computer Chose: </span>
<span id="computerInput"></span>
</div><br />
<div>
<span>Total Wins: </span>
<span id="wins"></span>
</div><br />
<div>
<span>Total Losses: </span>
<span id="losses"></span>
</div><br />
<div>
<span>Ties: </span>
<span id="ties"></span>
</div><br />
<div>
<span>Result of the last match: </span>
<span id="lastResult"></span>
</div><br />
<script src="./js/main.js"></script>
</body>
</html>