-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.21 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
<!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="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<h1>Rock Paper Scissors - now with a GUI!</h1>
<div class="playerChoice">
<input id="rock" type="image" src="images/rock.png" />
<input id="paper" type="image" src="images/paper.png" />
<input id="scissors" type="image" src="images/scissors.png" />
</div>
<div class="pcChoice">
<input id="pcChoice" type="image" src="images/interrogation.png" />
</div>
<div>
<p class="narrator">Choose your move!</p>
</div>
<div class="scoreBoard">
<p>PLAYER</p>
<p class="playerScore">0</p>
<p>-</p>
<p class="pcScore">0</p>
<p>PC</p>
</div>
<div class="roundDisplay">
<p>Rounds:</p>
<p class="roundNumber">0/5</p>
</div>
<div>
<p>Visit the Github repository for this project
<a href="https://github.com/blister-pack/revisit_rps" target="_blank">
here
</a>
</p>
</div>
</body>
</html>