-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrps.html
More file actions
36 lines (30 loc) · 872 Bytes
/
rps.html
File metadata and controls
36 lines (30 loc) · 872 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rock paper scissor</title>
<link rel="stylesheet" href="rps.css">
</head>
<body>
<h1>ROCK PAPER SCISSORS</h1>
<h2></h2>
<div class="container">
<div class="choice" id="rock"><img src="rock.jpg" ></div>
<div class="choice" id="paper"><img src="paper.jpg" ></div>
<div class="choice" id="scissor"><img src="scissor.jpg" ></div>
</div>
<div class="score_board">
<div class="score">
<p id="comp">0</p>
<p>COMPUTER</p>
</div>
<div class="score">
<p id="you">0</p>
<p>YOU</p>
</div>
</div>
<div class="msg">!!PLAY YOUR MOVE!!</div>
<script src="rps.js"></script>
</body>
</html>