-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 998 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
<!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>
<section class="game">
<h1>Let's Play A Game</h1>
<div class="score">
<div class="player">
<h3>Player Score</h3>
<p class="playerScore">0</p>
</div>
<div class="computer">
<h3>Computer Score</h3>
<p class="computerScore">0</p>
</div>
</div>
<div class="moves">Moves left: 5</div>
<div class="option">
<button class="rock">Rock</button>
<button class="paper">Paper</button>
<button class="scissors">Scissors</button>
</div>
<div class="result"></div>
</section>
<!-- >>>>>>> rps-ui -->
</body>
</html>