-
Notifications
You must be signed in to change notification settings - Fork 0
/
rps.html
37 lines (35 loc) · 964 Bytes
/
rps.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
<!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>
</head>
<body>
<section class="game">
<div class="score">
<div class="player-score">
<h2>Player</h2>
<p>0</p>
</div>
<div class="computer-score">
<h2>Computer</h2>
<p>0</p>
</div>
</div>
<div class="intro">
<h3>Rock Paper Scissor</h3>
<button>Let's Play</button>
</div>
<div class="match">
<h2 class="winner">Choose an option</h2>
<div class="options">
<button>Rock</button>
<button>Paper</button>
<button>Scissor</button>
</div>
</div>
</section>
<script src="scripts.js"></script>
</body>
</html>